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,14 @@
namespace GoveeCSharpConnector.Objects;
public class GoveeApiCommand
{
public string Device { get; set; }
public string Model { get; set; }
public Command Cmd { get; set; }
}
public class Command
{
public string Name { get; set; }
public object Value { get; set; }
}