Game controller

This commit is contained in:
2023-12-04 14:47:32 +00:00
parent c3fd1b3fc6
commit 00402b428f
8 changed files with 1398 additions and 2 deletions

View File

@ -0,0 +1,15 @@
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<string> Genres { get; init; } = new();
}