using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// DataEnumValue Data Structure. /// [Serializable] public class DataEnumValue : AopObject { /// /// 过滤条件 /// [XmlArray("filter_tags")] [XmlArrayItem("filter_tag")] public List FilterTags { get; set; } /// /// 枚举的展示文本 /// [XmlElement("label")] public string Label { get; set; } /// /// 自定义标签的枚举值 /// [XmlElement("value")] public string Value { get; set; } } }