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