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.

38 lines
1.0 KiB
C#

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