using Newtonsoft.Json; namespace com.clusterrr.TuyaNet { /// /// Currect device status. /// public class TuyaDeviceStatus { /// /// DPS number /// [JsonProperty("code")] public string Code { get; set; } /// /// DPS value. /// [JsonProperty("value")] public object Value { get; set; } } }