vds_ios/VDS/Protocols/Labelable.swift
Matt Bruce b993952e30 updated labelable
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-08-03 15:26:40 -05:00

16 lines
306 B
Swift

//
// LabelModelable.swift
// VDS
//
// Created by Matt Bruce on 7/28/22.
//
import Foundation
public protocol Labelable {
var fontSize: FontSize { get set }
var textPosition: TextPosition { get set }
var fontWeight: FontWeight { get set }
var fontCategory: FontCategory { get set }
}