mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-12 09:26:26 +01:00
15 lines
235 B
Swift
15 lines
235 B
Swift
//
|
|
// SmallIconProvider.swift
|
|
// Evergreen
|
|
//
|
|
// Created by Brent Simmons on 12/16/17.
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
protocol SmallIconProvider {
|
|
|
|
var smallIcon: NSImage? { get }
|
|
}
|