using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Card { /// /// 查询会员卡分类消费返回对象 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardGetWidInfoResponse { private string wid; //公众号标识 private string name; //公众号名称 private string status; //公众号状态(1,启用) /// /// 公众号标识 /// [JsonProperty(PropertyName = "wid")] public string Wid { get => wid; set => wid = value; } /// /// 公众号名称 /// [JsonProperty(PropertyName = "name")] public string Name { get => name; set => name = value; } /// /// 公众号状态(1,启用) /// [JsonProperty(PropertyName = "status")] public string Status { get => status; set => status = value; } } }