Removed Old Api Classes Added new Http Api Service and Classes TODO Dynamic Effect Methods
11 lines
246 B
C#
11 lines
246 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace GoveeCSharpConnector.Objects.Misc;
|
|
|
|
public class Option
|
|
{
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
[JsonPropertyName("value")]
|
|
public int Value { get; set; }
|
|
} |