1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 10:08:31 +00:00
2021-02-02 23:37:56 +01:00

31 lines
593 B
C#

using System.Text.Json.Serialization;
namespace RGB.NET.Devices.SteelSeries.API.Model
{
internal class GoLispHandler
{
#region Properties & Fields
[JsonPropertyName("game")]
public string? Game { get; set; }
[JsonPropertyName("golisp")]
public string? Handler { get; set; }
#endregion
#region Constructors
public GoLispHandler()
{ }
public GoLispHandler(Game game, string handler)
{
this.Handler = handler;
Game = game.Name;
}
#endregion
}
}