33 lines
754 B
C#
33 lines
754 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenSaveCloudClient.Models.Remote
|
|
{
|
|
public class Game
|
|
{
|
|
|
|
[JsonPropertyName("id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonPropertyName("revision")]
|
|
public int Revision { get; set; }
|
|
|
|
[JsonPropertyName("hash")]
|
|
public string Hash { get; set; }
|
|
|
|
[JsonPropertyName("last_update")]
|
|
public string LastUpdate { get; set; }
|
|
|
|
[JsonPropertyName("available")]
|
|
public bool Available { get; set; }
|
|
|
|
}
|
|
}
|