Changes are per review comments

This commit is contained in:
Sumanth Nadigadda 2021-07-12 11:50:38 +05:30
parent f4fcf5449a
commit bb10fdf818

View File

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