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