mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-01 05:44:55 +00:00
30 lines
679 B
C#
30 lines
679 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials.Core.UDMApi
|
|
{
|
|
internal class DeviceStatus
|
|
{
|
|
[JsonProperty("label")]
|
|
public string label { get; set; }
|
|
|
|
[JsonProperty("status")]
|
|
public string status { get; set; }
|
|
|
|
[JsonProperty("description")]
|
|
public string description { get; set; }
|
|
|
|
[JsonProperty("videoSource")]
|
|
public string videoSource { get; set; }
|
|
|
|
[JsonProperty("audioSource")]
|
|
public string audioSource { get; set; }
|
|
|
|
[JsonProperty("usage")]
|
|
public int usage { get; set; }
|
|
|
|
[JsonProperty("error")]
|
|
public string error { get; set; }
|
|
}
|
|
|
|
}
|