Removed Old Api Classes Added new Http Api Service and Classes TODO Dynamic Effect Methods
17 lines
485 B
C#
17 lines
485 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace GoveeCSharpConnector.Objects.Misc;
|
|
|
|
public class Parameters
|
|
{
|
|
[JsonPropertyName("dataType")]
|
|
public string DataType { get; set; }
|
|
[JsonPropertyName("options")]
|
|
public List<Option> Options { get; set; }
|
|
[JsonPropertyName("unit")]
|
|
public string Unit { get; set; }
|
|
[JsonPropertyName("range")]
|
|
public Range Range { get; set; }
|
|
[JsonPropertyName("fields")]
|
|
public List<Field> Fields { get; set; }
|
|
} |