using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 解除挂失返回对象 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class CardMissReleaseResponse { /// /// 卡号 /// [JsonProperty(PropertyName = "cardNo")] public string CardNo { get; set; } } }