using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// DataEnumValue Data Structure.
///
[Serializable]
public class DataEnumValue : AopObject
{
///
/// 过滤条件
///
[JsonProperty("filter_tags")]
public List FilterTags { get; set; }
///
/// 枚举的展示文本
///
[JsonProperty("label")]
public string Label { get; set; }
///
/// 自定义标签的枚举值
///
[JsonProperty("value")]
public string Value { get; set; }
}
}