updated name

This commit is contained in:
Kevin G Christiano 2021-06-24 12:12:54 -04:00
parent bd26ff181e
commit 5947e5c1ad

View File

@ -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 }
}