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