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