WdkRexSoftwareInfoCheckResponse.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// WdkRexSoftwareInfoCheckResponse.
  8. /// </summary>
  9. public class WdkRexSoftwareInfoCheckResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 应用名称
  13. /// </summary>
  14. [XmlElement("app_name")]
  15. public string AppName { get; set; }
  16. /// <summary>
  17. /// 是否自动安装
  18. /// </summary>
  19. [XmlElement("auto_install")]
  20. public bool AutoInstall { get; set; }
  21. /// <summary>
  22. /// 配置信息
  23. /// </summary>
  24. [XmlElement("config_json")]
  25. public string ConfigJson { get; set; }
  26. /// <summary>
  27. /// 更新链接
  28. /// </summary>
  29. [XmlElement("download_url")]
  30. public string DownloadUrl { get; set; }
  31. /// <summary>
  32. /// 应用图标
  33. /// </summary>
  34. [XmlElement("icon_url")]
  35. public string IconUrl { get; set; }
  36. /// <summary>
  37. /// 包md5
  38. /// </summary>
  39. [XmlElement("md5")]
  40. public string Md5 { get; set; }
  41. /// <summary>
  42. /// 包名
  43. /// </summary>
  44. [XmlElement("package_name")]
  45. public string PackageName { get; set; }
  46. /// <summary>
  47. /// 二维码
  48. /// </summary>
  49. [XmlElement("qrcode")]
  50. public string Qrcode { get; set; }
  51. /// <summary>
  52. /// 包大小
  53. /// </summary>
  54. [XmlElement("size")]
  55. public long Size { get; set; }
  56. /// <summary>
  57. /// 状态
  58. /// </summary>
  59. [XmlElement("status")]
  60. public long Status { get; set; }
  61. /// <summary>
  62. /// 更新信息
  63. /// </summary>
  64. [XmlElement("update_desc")]
  65. public string UpdateDesc { get; set; }
  66. /// <summary>
  67. /// 版本号
  68. /// </summary>
  69. [XmlElement("version_code")]
  70. public long VersionCode { get; set; }
  71. /// <summary>
  72. /// 版本名
  73. /// </summary>
  74. [XmlElement("version_name")]
  75. public string VersionName { get; set; }
  76. }
  77. }