mirror of
https://github.com/appwrite/sdk-for-apple.git
synced 2026-06-06 19:28:04 +00:00
23 lines
558 B
Swift
23 lines
558 B
Swift
import Foundation
|
|
|
|
public enum Browser: String, Codable, CustomStringConvertible {
|
|
case avantBrowser = "aa"
|
|
case androidWebViewBeta = "an"
|
|
case googleChrome = "ch"
|
|
case googleChromeIOS = "ci"
|
|
case googleChromeMobile = "cm"
|
|
case chromium = "cr"
|
|
case mozillaFirefox = "ff"
|
|
case safari = "sf"
|
|
case mobileSafari = "mf"
|
|
case microsoftEdge = "ps"
|
|
case microsoftEdgeIOS = "oi"
|
|
case operaMini = "om"
|
|
case opera = "op"
|
|
case operaNext = "on"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|