using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// InvestigCategoryResult Data Structure. /// [Serializable] public class InvestigCategoryResult : AopObject { /// /// 数据项Category /// [XmlElement("category")] public string Category { get; set; } /// /// 数据项对应的所有采集结果 /// [XmlArray("category_result")] [XmlArrayItem("investig_category_data")] public List CategoryResult { get; set; } } }