vds_ios/VDS/Components/TitleLockup/TitleLockupEyebrowModel.swift
Matt Bruce 98242fe055 TitleLockup converted to models
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2023-01-06 14:54:49 -06:00

23 lines
532 B
Swift

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