using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.StoreBusiness { /// /// 门店pos设置方案 /// /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StoreYunSetResponse { /// /// 分类ID /// [JsonProperty(PropertyName = "enable")] public int Enable { get; set; } /// /// 门店POS设置方案名称 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// 设置参数 /// [JsonProperty(PropertyName = "pbody")] public string Pbody { get; set; } /// /// 备注 /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } /// /// 终端类型 /// [JsonProperty(PropertyName = "terminalType")] public string TerminalType { get; set; } } }