13 lines
187 B
Swift
13 lines
187 B
Swift
//
|
|
// LabelModelable.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 7/28/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol Labelable: Fontable {
|
|
var textPosition: TextPosition { get set }
|
|
}
|