18 lines
458 B
Swift
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 }
|
|
}
|