NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayUserAccountUseridBatc...

20 lines
476 B
C#

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayUserAccountUseridBatchqueryResponse.
/// </summary>
public class AlipayUserAccountUseridBatchqueryResponse : AopResponse
{
/// <summary>
/// 用户列表
/// </summary>
[XmlArray("user_id_list")]
[XmlArrayItem("string")]
public List<string> UserIdList { get; set; }
}
}