diff --git a/VDS/Classes/Control.swift b/VDS/Classes/Control.swift index e1a0726e..1c0b0422 100644 --- a/VDS/Classes/Control.swift +++ b/VDS/Classes/Control.swift @@ -10,7 +10,7 @@ import UIKit import Combine -open class Control: UIControl, ModelHandlerable, ViewProtocol { +open class Control: UIControl, ModelHandlerable, ViewProtocol, Resettable { @Published public var model: ModelType private var cancellable: AnyCancellable? diff --git a/VDS/Classes/View.swift b/VDS/Classes/View.swift index 8bdf9191..06a55579 100644 --- a/VDS/Classes/View.swift +++ b/VDS/Classes/View.swift @@ -10,7 +10,7 @@ import UIKit import Combine -open class View: UIView, ModelHandlerable, ViewProtocol { +open class View: UIView, ModelHandlerable, ViewProtocol, Resettable { @Published public var model: ModelType private var cancellable: AnyCancellable?