You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.2 KiB
C#

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