vds_ios/VDS/Protocols/Enabling.swift
Matt Bruce 8489ba9085 added enabling as a protocol for controls and view
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2023-08-25 13:02:46 -05:00

15 lines
275 B
Swift

//
// Enabling.swift
// VDS
//
// Created by Matt Bruce on 8/25/23.
//
import Foundation
/// Any object that can be disabled, which may change the appearance
public protocol Enabling {
/// Whether this object is disabled or not
var isEnabled: Bool { get set }
}