using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace Dfs.WayneChina.IPosPlus.ServiceClient { public class DiscountResponse { [JsonProperty("cardNo")] public string CardNo { get; set; } [JsonProperty("cardType")] public byte CardType { get; set; } [JsonProperty("fillingAmount")] public decimal FillingAmount { get; set; } [JsonProperty("unitPrice")] public decimal UnitPrice { get; set; } [JsonProperty("priceAfterDiscount")] public decimal PriceAfterDiscount { get; set; } [JsonProperty("fuelNo")] public string FuelNo { get; set; } [JsonProperty("discountAmount")] public decimal DiscountAmount { get; set; } [JsonProperty("payAmount")] public decimal PayAmount { get; set; } [JsonProperty("promoDescription")] public Promotion PromoDescription { get; set; } } }