Added Get Scenes Method

This commit is contained in:
Markus Bender
2024-02-26 05:32:07 +01:00
parent fdf74f5f52
commit 3c19797f72
4 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,13 @@
using System.Text.Json.Serialization;
using GoveeCSharpConnector.Objects.Misc;
namespace GoveeCSharpConnector.Objects;
public class GoveeScene
{
[JsonPropertyName("name")]
public string Name { get; set; }
[JsonPropertyName("value")]
public SceneValue SceneValue { get; set; }
}