Removed Example Console Project
Removed Old Api Classes Added new Http Api Service and Classes TODO Dynamic Effect Methods
This commit is contained in:
17
GoveeCSharpConnector/Objects/Misc/Parameters.cs
Normal file
17
GoveeCSharpConnector/Objects/Misc/Parameters.cs
Normal file
@ -0,0 +1,17 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user