vds_ios/VDS/Components/Toggle/ToggleModelProtocol.swift
Matt Bruce b1324444f8 refactored out speicific atomic code
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-07-26 11:08:42 -05:00

16 lines
311 B
Swift

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