vds_ios/VDS/Protocols/Invertable.swift
Matt Bruce 6b77c2829a first cut of Toggle
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-07-25 14:51:12 -05:00

13 lines
162 B
Swift

//
// Invertable.swift
// VDS
//
// Created by Matt Bruce on 7/22/22.
//
import Foundation
public protocol Invertable {
var inverted: Bool { get set }
}