using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 线上绑定会员卡 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class WeixinBindCardResponse { /// /// 映射key /// [JsonProperty(PropertyName = "contentKey")] public string ContentKey { get; set; } /// /// 会员卡号 /// [JsonProperty(PropertyName = "cardNo")] public string CardNo { get; set; } /// /// 绑定连接 /// [JsonProperty(PropertyName = "bindUrl")] public string BindUrl { get; set; } } }