using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayTradeCreateResponse. /// public class AlipayTradeCreateResponse : AopResponse { /// /// 商户订单号 /// [JsonProperty("out_trade_no")] public string OutTradeNo { get; set; } /// /// 支付宝交易号 /// [JsonProperty("trade_no")] public string TradeNo { get; set; } } }