mvm_core_ui/MVMCoreUI/Models/ContainerMoleculeProtocol.swift
Suresh, Kamlesh b7ff1354b8 clean up
2019-12-04 16:21:10 -05:00

18 lines
458 B
Swift

//
// ContainerMoleculeProtocol.swift
// MVMCoreUI
//
// Created by Suresh, Kamlesh on 12/4/19.
// Copyright © 2019 Verizon Wireless. All rights reserved.
//
import Foundation
protocol ContainerMoleculeProtocol: MoleculeProtocol {
var molecule: MoleculeProtocol? { get }
var useHorizontalMargins: Bool? { get }
var useVerticalMargins: Bool? { get }
var horizontalAlignment: String? { get }
var verticalAlignment: String? { get }
}