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