NetNewsWire/Frameworks/DataModel/DisplayNameProviderProtocol...

16 lines
261 B
Swift
Raw Normal View History

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