vds_ios/VDS/Protocols/Disabling.swift
Matt Bruce deb21d8916 enforced to anyobject for reference type
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-11-18 10:02:54 -06:00

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