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