mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-06-06 19:27:57 +00:00
15 lines
278 B
Swift
15 lines
278 B
Swift
import Foundation
|
|
|
|
public enum Region: String, Codable, CustomStringConvertible {
|
|
case fra = "fra"
|
|
case nyc = "nyc"
|
|
case syd = "syd"
|
|
case sfo = "sfo"
|
|
case sgp = "sgp"
|
|
case tor = "tor"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|