From d249ba0fed7e089ecbdaa1fa10c4482dd53023ee Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Mon, 22 Aug 2022 17:52:20 -0500 Subject: [PATCH] added ObjectWithable Signed-off-by: Matt Bruce --- VDS/Classes/ColorConfiguration.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VDS/Classes/ColorConfiguration.swift b/VDS/Classes/ColorConfiguration.swift index 581c38e6..43777b4c 100644 --- a/VDS/Classes/ColorConfiguration.swift +++ b/VDS/Classes/ColorConfiguration.swift @@ -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 }