16 lines
325 B
C#
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();
|
|
}
|