18 lines
238 B
Swift
18 lines
238 B
Swift
//
|
|
// ServiceStates.swift
|
|
// nirvana-ios
|
|
//
|
|
// Created by Arjun Patel on 12/18/21.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum ServiceState {
|
|
case error(ServiceError)
|
|
case success(String)
|
|
}
|
|
|
|
struct ServiceError {
|
|
let description: String
|
|
}
|