mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-13 09:59:17 +01:00
16 lines
266 B
Swift
16 lines
266 B
Swift
//
|
|
// DisplayNameProviderProtocol.swift
|
|
// DataModel
|
|
//
|
|
// Created by Brent Simmons on 7/28/16.
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol DisplayNameProvider {
|
|
|
|
var nameForDisplay: String {get}
|
|
}
|
|
|