using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// KoubeiItemExtitemBrandQueryResponse. /// public class KoubeiItemExtitemBrandQueryResponse : AopResponse { /// /// 品牌列表信息 /// [XmlArray("brand_list")] [XmlArrayItem("ext_brand")] public List BrandList { get; set; } } }