mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
31 lines
585 B
C#
31 lines
585 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace RGB.NET.Devices.SteelSeries.API.Model
|
|
{
|
|
internal class Game
|
|
{
|
|
#region Properties & Fields
|
|
|
|
[JsonPropertyName("game")]
|
|
public string? Name { get; set; }
|
|
|
|
[JsonPropertyName("game_display_name")]
|
|
public string? DisplayName { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public Game()
|
|
{ }
|
|
|
|
public Game(string name, string displayName)
|
|
{
|
|
Name = name;
|
|
DisplayName = displayName;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|