vds_ios/VDS/Protocols/Errorable.swift
Matt Bruce 9d440aaeac refactored to hasError
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-08-11 17:30:54 -05:00

14 lines
198 B
Swift

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