Files
zap-stream-api/NostrStreamer/ApiModel/GameInfo.cs
2024-03-06 14:34:34 +00:00

19 lines
400 B
C#

using Newtonsoft.Json;
namespace NostrStreamer.ApiModel;
public class GameInfo
{
[JsonProperty("id")]
public string Id { get; init; } = null!;
[JsonProperty("name")]
public string Name { get; init; } = null!;
[JsonProperty("cover")]
public string Cover { get; init; } = null!;
[JsonProperty("genres")]
public List<string> Genres { get; init; } = new();
}