This commit is contained in:
Locxion
2024-02-01 21:43:03 +01:00
commit efe6863b14
22 changed files with 885 additions and 0 deletions

View File

@ -0,0 +1,12 @@
using GoveeCSharpConnector.Enums;
namespace GoveeCSharpConnector.Objects;
public class Properties
{
public bool Online { get; set; }
public PowerState PowerState { get; set; }
public int Brightness { get; set; }
public int? ColorTemp { get; set; }
public RgbColor Color { get; set; }
}