using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class RefundGiftCardRecordResponse { /// /// 销售单号 /// [JsonProperty(PropertyName = "ticketNo")] public string TicketNo { get; set; } /// /// 销售单号 /// [JsonProperty(PropertyName = "payVoucherNo")] public string PayVoucherNo { get; set; } } }