mirror of
https://github.com/appwrite/sdk-for-apple.git
synced 2026-06-06 19:28:04 +00:00
11 lines
206 B
Swift
11 lines
206 B
Swift
import Foundation
|
|
|
|
public enum BrowserTheme: String, Codable, CustomStringConvertible {
|
|
case light = "light"
|
|
case dark = "dark"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|