vds_ios/VDS/Components/Toggle/VDSToggleModel.swift
Matt Bruce d61f60cc21 refactored more of the toggle
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-07-26 12:04:41 -05:00

16 lines
307 B
Swift

//
// ToggleModel.swift
// VDS
//
// Created by Matt Bruce on 7/22/22.
//
import Foundation
import UIKit
public protocol VDSToggleModel: Surfaceable, FormFieldable, DataTrackable, Disabling, Accessable {
var id: String? { get set }
var showText: Bool { get set }
var on: Bool { get set }
}