added ObjectWithable

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2022-08-22 17:52:20 -05:00
parent 304023381c
commit d249ba0fed

View File

@ -8,7 +8,7 @@
import Foundation
import UIKit
public protocol Colorable: Withable, Initable {
public protocol Colorable: AnyObject, ObjectWithable, Initable {
associatedtype ModelType
func getColor(_ viewModel: ModelType) -> UIColor
}