Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayUserAccountUseridBatchqueryResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

18 lines
397 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayUserAccountUseridBatchqueryResponse.
/// </summary>
public class AlipayUserAccountUseridBatchqueryResponse : AopResponse
{
/// <summary>
/// 用户列表
/// </summary>
[JsonProperty("user_id_list")]
public List<string> UserIdList { get; set; }
}
}