using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// KoubeiItemCategoryChildrenBatchqueryResponse. /// public class KoubeiItemCategoryChildrenBatchqueryResponse : AopResponse { /// /// 口碑标准后台类目信息列表 /// [XmlArray("category_list")] [XmlArrayItem("standard_category_info")] public List CategoryList { get; set; } } }