mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-09 09:09:58 +00:00
24 lines
461 B
Swift
24 lines
461 B
Swift
struct Receiver : Codable {
|
|
struct Status: Codable {
|
|
let application: Application
|
|
let volume: Volume
|
|
}
|
|
|
|
struct Application: Codable {
|
|
let displayName: String
|
|
let isIdleScreen: Bool
|
|
let statusText: String
|
|
}
|
|
|
|
struct Volume: Codable {
|
|
let level: Double
|
|
let muted: Bool
|
|
}
|
|
|
|
let friendlyName: String
|
|
let host: String
|
|
let id: String
|
|
let port: Int
|
|
let status: Status
|
|
}
|