using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace Dfs.WayneChina.IPosPlus.ServiceClient { /// /// Represents an online discount calculation request. /// public class DiscountRequest { [JsonProperty("cardNo")] public string CardNo { get; set; } [JsonProperty("fillingAmount")] public decimal FillingAmount { get; set; } [JsonProperty("volume")] public decimal Volume { get; set; } [JsonProperty("unitPrice")] public decimal UnitPrice { get; set; } [JsonProperty("cardType")] public int CardType { get; set; } [JsonProperty("timeStamp")] public DateTime TimeStamp { get; set; } [JsonProperty("barcode")] public string Barcode { get; set; } } }