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