13 lines
171 B
Swift
13 lines
171 B
Swift
//
|
|
// Disabling.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 7/22/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol Disabling: AnyObject {
|
|
var disabled: Bool { get set }
|
|
}
|