TapCloudSaveBaseResponse.cs 633 B

1234567891011121314151617181920212223242526272829
  1. using Newtonsoft.Json;
  2. using Newtonsoft.Json.Linq;
  3. namespace TapSDK.CloudSave.Standalone
  4. {
  5. internal class TapCloudSaveBaseResponse
  6. {
  7. [JsonProperty("success")]
  8. public bool success { get; set; }
  9. [JsonProperty("now")]
  10. public int now { get; set; }
  11. [JsonProperty("data")]
  12. public JObject data { get; set; }
  13. }
  14. internal class TapCloudSaveError
  15. {
  16. [JsonProperty("code")]
  17. public int code { get; set; }
  18. [JsonProperty("msg")]
  19. public string msg { get; set; }
  20. [JsonProperty("error")]
  21. public string error { get; set; }
  22. }
  23. }