2017-05-23 22:14:30 +02:00
|
|
|
//
|
|
|
|
// DisplayNameProviderProtocol.swift
|
|
|
|
// DataModel
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 7/28/16.
|
2017-05-29 22:17:58 +02:00
|
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
2017-05-23 22:14:30 +02:00
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
public protocol DisplayNameProvider {
|
|
|
|
|
|
|
|
var nameForDisplay: String {get}
|
|
|
|
}
|
|
|
|
|