Files
govee-csharp-connector/GoveeCSharpConnector/Objects/GoveeApiState.cs
Locxion efe6863b14 Init
2024-02-01 21:43:03 +01:00

16 lines
334 B
C#

using System.Text.Json.Serialization;
namespace GoveeCSharpConnector.Objects;
public class GoveeApiState
{
[JsonPropertyName("device")]
public string DeviceId { get; set; }
public string Model { get; set; }
public string Name { get; set; }
[JsonIgnore]
public Properties Properties { get; set; }
}