diff --git a/Evergreen/Data/SmallIconProvider.swift b/Evergreen/Data/SmallIconProvider.swift new file mode 100644 index 000000000..bdd3c4659 --- /dev/null +++ b/Evergreen/Data/SmallIconProvider.swift @@ -0,0 +1,14 @@ +// +// 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 } +}