Force downlaod/upload, download dialog

This commit is contained in:
Aurélie Delhaie
2022-05-24 23:46:44 +02:00
parent e89de6c0b7
commit 5f92fcafa0
31 changed files with 6066 additions and 153 deletions

View File

@@ -11,13 +11,13 @@ namespace OpenSaveCloudClient.Models.Remote
{
[JsonPropertyName("id")]
public int Id { get; set; }
public long Id { get; set; }
[JsonPropertyName("name")]
public string Name { get; set; }
[JsonPropertyName("rev")]
public int Revision { get; set; }
public long Revision { get; set; }
[JsonPropertyName("hash")]
public string Hash { get; set; }

View File

@@ -10,6 +10,6 @@ namespace OpenSaveCloudClient.Models.Remote
public class UploadGameInfo
{
[JsonPropertyName("game_id")]
public int GameId { get; set; }
public long GameId { get; set; }
}
}