From bb10fdf818dc699741649e842e4ace21b4cf058a Mon Sep 17 00:00:00 2001 From: Sumanth Nadigadda Date: Mon, 12 Jul 2021 11:50:38 +0530 Subject: [PATCH] Changes are per review comments --- .../ListLeftVariableIconWithRightCaretBodyTextModel.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/LeftVariable/ListLeftVariableIconWithRightCaretBodyTextModel.swift b/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/LeftVariable/ListLeftVariableIconWithRightCaretBodyTextModel.swift index 6a84fee0..88eec8ea 100644 --- a/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/LeftVariable/ListLeftVariableIconWithRightCaretBodyTextModel.swift +++ b/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/LeftVariable/ListLeftVariableIconWithRightCaretBodyTextModel.swift @@ -7,18 +7,18 @@ // -open class ListLeftVariableIconWithRightCaretBodyTextModel: ListItemModel, ParentMoleculeModelProtocol { +public class ListLeftVariableIconWithRightCaretBodyTextModel: ListItemModel, MoleculeModelProtocol { //----------------------------------------------------- // MARK: - Properties //----------------------------------------------------- - open class var identifier: String { return "listLVImgBdy" } + public static var identifier: String = "listLVImgBdy" public var image: ImageViewModel public var headlineBody: HeadlineBodyModel public var rightLabel: LabelModel public var children: [MoleculeModelProtocol] { - return [image, headlineBody,rightLabel] + return [image, headlineBody, rightLabel] } //-----------------------------------------------------