// // 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 } }