using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// CrowdRuleInfo Data Structure.
///
[Serializable]
public class CrowdRuleInfo : AopObject
{
///
/// 规则描述
///
[JsonProperty("ruledesc")]
public string Ruledesc { get; set; }
///
/// 规则id
///
[JsonProperty("ruleid")]
public string Ruleid { get; set; }
///
/// 圈人规则的状态
///
[JsonProperty("status")]
public string Status { get; set; }
}
}