using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// ReduceToAmtDstCampPrizeModel Data Structure. /// [Serializable] public class ReduceToAmtDstCampPrizeModel : AopObject { /// /// 优惠后价格 /// [JsonProperty("reduct_to_amt")] public string ReductToAmt { get; set; } } }