Removed Old Api Classes Added new Http Api Service and Classes TODO Dynamic Effect Methods
13 lines
311 B
C#
13 lines
311 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace GoveeCSharpConnector.Objects.Misc;
|
|
|
|
public class Range
|
|
{
|
|
[JsonPropertyName("min")]
|
|
public int Min { get; set; }
|
|
[JsonPropertyName("max")]
|
|
public int Max { get; set; }
|
|
[JsonPropertyName("precision")]
|
|
public int Precision { get; set; }
|
|
} |