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