Removed Old Api Classes Added new Http Api Service and Classes TODO Dynamic Effect Methods
14 lines
390 B
C#
14 lines
390 B
C#
using System.Text.Json.Serialization;
|
|
using GoveeCSharpConnector.Objects.Misc;
|
|
|
|
namespace GoveeCSharpConnector.Objects;
|
|
|
|
public class GoveeHttpDevice
|
|
{
|
|
[JsonPropertyName("sku")]
|
|
public string Model { get; set; }
|
|
[JsonPropertyName("device")]
|
|
public string Device { get; set; }
|
|
[JsonPropertyName("capabilities")]
|
|
public List<Capability> Capabilities { get; set; }
|
|
} |