1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace HNWD.Pregrant.Model
- {
- public class WD_VerInfo : ModelBase
- {
- public string ID = "0";
-
- public String VER_DEVICETYPE = string.Empty;
- [Nick("APPVersion")]
- public string VER_INFO = string.Empty;
- [Nick("downloadURL")]
- public string VER_FILEPATH = string.Empty;
- public string VER_DATETIME = string.Empty;
- [Ignore]
- public string APPVersion = string.Empty;
-
- [Ignore]
- public string downloadURL = string.Empty;
-
- }
- }
|