using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// Data Data Structure.
///
[Serializable]
public class Data : AopObject
{
///
/// 用户id列表
///
[JsonProperty("user_id_list")]
public List UserIdList { get; set; }
}
}