19 lines
433 B
C#
19 lines
433 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayUserContractGetResponse.
|
|
/// </summary>
|
|
public class AlipayUserContractGetResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 支付宝用户订购信息
|
|
/// </summary>
|
|
[XmlElement("alipay_contract")]
|
|
public AlipayContract AlipayContract { get; set; }
|
|
}
|
|
}
|