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