// // TitleLockupSubTitleModel.swift // VDS // // Created by Matt Bruce on 1/6/23. // import Foundation extension TitleLockup { public struct SubTitleModel { public var text: String public var textColor: Use public var textAttributes: [any LabelAttributeModel]? public var numberOfLines: Int public init(text: String, textColor: Use = .primary, textAttributes: [any LabelAttributeModel]? = nil, numberOfLines: Int = 0) { self.text = text self.textColor = textColor self.textAttributes = textAttributes self.numberOfLines = numberOfLines } } }