using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// QueryGroup Data Structure.
///
[Serializable]
public class QueryGroup : AopObject
{
///
/// 分组id
///
[JsonProperty("id")]
public string Id { get; set; }
///
/// 分组中的圈人规则
///
[JsonProperty("label_rule")]
public List LabelRule { get; set; }
///
/// 用户分组名称
///
[JsonProperty("name")]
public string Name { get; set; }
}
}