TapCloudSaveArchiveListResponse.cs 248 B

1234567891011
  1. using System.Collections.Generic;
  2. using Newtonsoft.Json;
  3. namespace TapSDK.CloudSave.Standalone
  4. {
  5. internal class TapCloudSaveArchiveListResponse
  6. {
  7. [JsonProperty("saves")]
  8. public List<ArchiveData> saves { get; set; }
  9. }
  10. }