1
0
mirror of https://github.com/metabolist/metatext synced 2025-01-24 08:22:54 +01:00
metatext-app-ios-iphone-ipad/Shared/Model/Status.swift

16 lines
308 B
Swift
Raw Normal View History

2020-08-07 03:41:59 +02:00
// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
struct Status {
enum Visibility: String, Codable, Unknowable {
case `public`
case unlisted
case `private`
case direct
case unknown
2020-08-07 05:57:52 +02:00
static var unknownCase: Self { .unknown }
2020-08-07 03:41:59 +02:00
}
}