using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.StoreBusiness { /// /// 服务数据版本信息 /// /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class PosServerDataVersionResponse { /// /// 数据版本号 /// [JsonProperty(PropertyName = "dataVersion")] public string DataVersion { get; set; } /// /// 数据版本类型 /// [JsonProperty(PropertyName = "dataType")] public string DataType { get; set; } /// /// 扩展字段1 /// [JsonProperty(PropertyName = "ext1")] public string Ext1 { get; set; } /// /// 扩展字段2 /// [JsonProperty(PropertyName = "ext2")] public string Ext2 { get; set; } /// /// 扩展字段3 /// [JsonProperty(PropertyName = "ext3")] public string Ext3 { get; set; } } }