Removed Example Console Project
Removed Old Api Classes Added new Http Api Service and Classes TODO Dynamic Effect Methods
This commit is contained in:
18
GoveeCSharpConnector/Objects/Misc/Properties.cs
Normal file
18
GoveeCSharpConnector/Objects/Misc/Properties.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using GoveeCSharpConnector.Enums;
|
||||
|
||||
namespace GoveeCSharpConnector.Objects.Misc;
|
||||
|
||||
public class Properties
|
||||
{
|
||||
[JsonPropertyName("online")]
|
||||
public bool Online { get; set; }
|
||||
[JsonPropertyName("powerState")]
|
||||
public PowerState PowerState { get; set; }
|
||||
[JsonPropertyName("brightness")]
|
||||
public int Brightness { get; set; }
|
||||
[JsonPropertyName("colorTemp")]
|
||||
public int ColorTemp { get; set; }
|
||||
[JsonPropertyName("color")]
|
||||
public RgbColor Color { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user