16 lines
306 B
Swift
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 }
|
|
}
|