using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// KoubeiItemExtitemCategoryQueryResponse. /// public class KoubeiItemExtitemCategoryQueryResponse : AopResponse { /// /// 品类信息列表 /// [XmlArray("category_list")] [XmlArrayItem("ext_category")] public List CategoryList { get; set; } } }