WD_VerInfo.cs 621 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace HNWD.Pregrant.Model
  6. {
  7. public class WD_VerInfo : ModelBase
  8. {
  9. public string ID = "0";
  10. public String VER_DEVICETYPE = string.Empty;
  11. [Nick("APPVersion")]
  12. public string VER_INFO = string.Empty;
  13. [Nick("downloadURL")]
  14. public string VER_FILEPATH = string.Empty;
  15. public string VER_DATETIME = string.Empty;
  16. [Ignore]
  17. public string APPVersion = string.Empty;
  18. [Ignore]
  19. public string downloadURL = string.Empty;
  20. }
  21. }