24 lines
390 B
Swift
24 lines
390 B
Swift
//
|
|
// 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)
|
|
}
|