TaobaoFilesGetTopDownloadRecordDo.cs 805 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability304.Domain;
  5. public class TaobaoFilesGetTopDownloadRecordDo
  6. {
  7. /*
  8. 下载链接
  9. */
  10. private string? url;
  11. /*
  12. 文件创建时间
  13. */
  14. private DateTime? created;
  15. /*
  16. 下载链接状态。1:未下载。2:已下载
  17. */
  18. private long? status;
  19. [JsonPropertyName("url")]
  20. public string? Url
  21. {
  22. get => url;
  23. set => this.url = value;
  24. }
  25. [JsonPropertyName("created")]
  26. public DateTime? Created
  27. {
  28. get => created;
  29. set => this.created = value;
  30. }
  31. [JsonPropertyName("status")]
  32. public long? Status
  33. {
  34. get => status;
  35. set => this.status = value;
  36. }
  37. }