WdProduceToolVersion.cs 634 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WDProduceToolUpdate
  7. {
  8. [Serializable]
  9. public class WdProduceToolVersion
  10. {
  11. public int id { get; set; }
  12. public string version_code { get; set; }
  13. public long create_time { get; set; }
  14. public string remark { get; set; }
  15. public bool bool_active { get; set; }
  16. public string update_file_path { get; set; }
  17. public string local_path { get; set; }
  18. public string server_url { get; set; }
  19. public bool updated { get; set; }
  20. }
  21. }