16 lines
307 B
Swift
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 }
|
|
}
|