using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayTradeCreateResponse. /// public class AlipayTradeCreateResponse : AopResponse { /// /// 商户订单号 /// [XmlElement("out_trade_no")] public string OutTradeNo { get; set; } /// /// 支付宝交易号 /// [XmlElement("trade_no")] public string TradeNo { get; set; } } }