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,12 @@
using System.Text.Json.Serialization;
namespace GoveeCSharpConnector.Objects.Misc;
public class SceneValue
{
[JsonPropertyName("paramId")]
public long ParamId { get; set; }
[JsonPropertyName("id")]
public long Id { get; set; }
}