Removed Old Api Classes Added new Http Api Service and Classes TODO Dynamic Effect Methods
13 lines
328 B
C#
13 lines
328 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace GoveeCSharpConnector.Objects.Misc;
|
|
|
|
public class Capability
|
|
{
|
|
[JsonPropertyName("type")]
|
|
public string Type { get; set; }
|
|
[JsonPropertyName("instance")]
|
|
public string Instance { get; set; }
|
|
[JsonPropertyName("state")]
|
|
public State State { get; set; }
|
|
} |