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