Files
govee-csharp-connector/GoveeCSharpConnector/Objects/Misc/Option.cs
Markus Bender 368de74820 Removed Example Console Project
Removed Old Api Classes
Added new Http Api Service and Classes
TODO Dynamic Effect Methods
2024-02-26 04:47:47 +01:00

11 lines
246 B
C#

using System.Text.Json.Serialization;
namespace GoveeCSharpConnector.Objects.Misc;
public class Option
{
[JsonPropertyName("name")]
public string Name { get; set; }
[JsonPropertyName("value")]
public int Value { get; set; }
}