Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayUserAccountUseridBatchqueryResponse.cs

18 lines
397 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
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; }
}
}