diff --git a/MVMCoreUI/Behaviors/SelectAllBoxesBehavior.swift b/MVMCoreUI/Behaviors/SelectAllBoxesBehavior.swift index e9ffce2c..d16c6cd6 100644 --- a/MVMCoreUI/Behaviors/SelectAllBoxesBehavior.swift +++ b/MVMCoreUI/Behaviors/SelectAllBoxesBehavior.swift @@ -9,7 +9,7 @@ /// Protocol to apply to any model of a UI Control with a binary on/off nature. /// /// Example classes: Checkbox or Toggle. -@objc public protocol SelectableMoleculeModel: AnyObject { +@objc public protocol SelectableMoleculeModelProtocol: AnyObject { @objc dynamic var selected: Bool { get set } }