16 lines
318 B
Swift
16 lines
318 B
Swift
//
|
|
// LabelModelable.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 7/28/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol Labelable {
|
|
var fontSize: VDSFontSize { get set }
|
|
var textPosition: VDSTextPosition { get set }
|
|
var fontWeight: VDSFontWeight { get set }
|
|
var fontCategory: VDSFontCategory { get set }
|
|
}
|