// // Errorable.swift // VDS // // Created by Matt Bruce on 8/3/22. // import Foundation public protocol Errorable { var hasError: Bool { get set } var errorText: String? { get set } }