vds_ios/VDS/Protocols/Errorable.swift
Matt Bruce fa3d139742 refactored hasError to showError
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-10-03 12:21:27 -05:00

14 lines
199 B
Swift

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