vds_ios/VDS/Protocols/Disabling.swift
Matt Bruce 87ecc1e28a added code comments
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2023-07-13 14:41:07 -05:00

15 lines
276 B
Swift

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