From 0e6a2202ea0afe79300d8a5d68acbafb762bc4b7 Mon Sep 17 00:00:00 2001 From: "Pfeil, Scott Robert" Date: Thu, 9 Jan 2020 15:51:42 -0500 Subject: [PATCH] Remove old file --- .../ContainerMoleculeProtocol.swift | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 MVMCoreUI/Models/ModelProtocols/ContainerMoleculeProtocol.swift diff --git a/MVMCoreUI/Models/ModelProtocols/ContainerMoleculeProtocol.swift b/MVMCoreUI/Models/ModelProtocols/ContainerMoleculeProtocol.swift deleted file mode 100644 index 9a303bdf..00000000 --- a/MVMCoreUI/Models/ModelProtocols/ContainerMoleculeProtocol.swift +++ /dev/null @@ -1,40 +0,0 @@ -// -// ContainerMoleculeProtocol.swift -// MVMCoreUI -// -// Created by Suresh, Kamlesh on 12/4/19. -// Copyright © 2019 Verizon Wireless. All rights reserved. -// - -import Foundation - -public protocol ContainerMoleculeProtocol: MoleculeProtocol { - var molecule: MoleculeProtocol { get } - var useHorizontalMargins: Bool? { get } - var useVerticalMargins: Bool? { get } - var horizontalAlignment: String? { get } - var verticalAlignment: String? { get } -} - -extension ContainerMoleculeProtocol { - public var backgroundColor: Color? { - get { return nil } - } - - public var useHorizontalMargins: Bool? { - get { return nil } - } - - public var useVerticalMargins: Bool? { - get { return nil } - } - - public var horizontalAlignment: String? { - get { return nil } - } - - public var verticalAlignment: String? { - get { return nil } - } -} -