Files
zap-stream-api/NostrStreamer/ApiModel/GameInfo.cs
2023-12-04 14:47:32 +00:00

16 lines
325 B
C#

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();
}