19 lines
428 B
C#
19 lines
428 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayUserAccountGetResponse.
|
|
/// </summary>
|
|
public class AlipayUserAccountGetResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 支付宝用户账户信息
|
|
/// </summary>
|
|
[XmlElement("alipay_account")]
|
|
public AlipayAccount AlipayAccount { get; set; }
|
|
}
|
|
}
|