// // VogueProtocol.swift // MVMCoreUI // // Created by Kevin Christiano on 4/1/20. // Copyright © 2020 Verizon Wireless. All rights reserved. // import Foundation public protocol VogueProtocol { } public protocol VogueViewProtocol { } public protocol VogueTextProtocol: VogueProtocol { func styleFont(_ font: UIFont) func styleTextColor(_ textColor: UIColor) }