vds_ios/VDS/Protocols/Enabling.swift
Matt Bruce ad03637e41 updated comments
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2023-08-25 16:22:39 -05:00

15 lines
273 B
Swift

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