17 lines
273 B
Swift
17 lines
273 B
Swift
|
//
|
||
|
// ViewStatus.swift
|
||
|
// Browse
|
||
|
//
|
||
|
// Created by Javier Cicchelli on 16/12/2022.
|
||
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
||
|
//
|
||
|
|
||
|
enum ViewStatus {
|
||
|
case noCredentials
|
||
|
case notSupported
|
||
|
case loading
|
||
|
case loaded
|
||
|
case empty
|
||
|
case error
|
||
|
}
|