From 81a6cd8447fa2b8d59189bf913c2d8f9290a702f Mon Sep 17 00:00:00 2001 From: Krishna Kishore Bandaru Date: Wed, 1 Mar 2023 17:05:56 +0530 Subject: [PATCH] made model class as open & properties --- MVMCoreUI/Atomic/Atoms/Views/CheckboxLabelModel.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MVMCoreUI/Atomic/Atoms/Views/CheckboxLabelModel.swift b/MVMCoreUI/Atomic/Atoms/Views/CheckboxLabelModel.swift index 858984b0..58f398b6 100644 --- a/MVMCoreUI/Atomic/Atoms/Views/CheckboxLabelModel.swift +++ b/MVMCoreUI/Atomic/Atoms/Views/CheckboxLabelModel.swift @@ -15,8 +15,8 @@ public enum CheckboxPosition: String, Codable { case bottom } -@objcMembers public class CheckboxLabelModel: MoleculeModelProtocol { - public static var identifier: String = "checkboxLabel" +@objcMembers open class CheckboxLabelModel: MoleculeModelProtocol { + open class var identifier: String { "checkboxLabel" } public var moleculeName: String = CheckboxLabelModel.identifier public var backgroundColor: Color? public var checkboxAlignment: CheckboxPosition?