You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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; }
}
}