diff --git a/Sources/GameAtlas/Models/Game.cs b/Sources/GameAtlas/Models/Game.cs new file mode 100644 index 0000000..770edf5 --- /dev/null +++ b/Sources/GameAtlas/Models/Game.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Text.Json.Serialization; +using System.Threading.Tasks; + +namespace Models +{ + public class Game + { + [JsonPropertyName("id")] + public int Id { get; set; } + + [JsonPropertyName("name")] + public string Name { get; set; } + + [JsonPropertyName("summary")] + public string Summary { get; set; } + + [JsonPropertyName("url")] + public string Url { get; set; } + + [JsonPropertyName("cover.url")] + public string CoverUrl { get; set; } + + public Game() { } + } +}