using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Top.Api.Domain
{
///
/// SellerAuthorize Data Structure.
///
[Serializable]
public class SellerAuthorize : TopObject
{
///
/// 品牌列表
///
[XmlArray("brands")]
[XmlArrayItem("brand")]
public List Brands { get; set; }
///
/// 类目列表
///
[XmlArray("item_cats")]
[XmlArrayItem("item_cat")]
public List ItemCats { get; set; }
///
/// 商品类目结构
///
[XmlArray("xinpin_item_cats")]
[XmlArrayItem("item_cat")]
public List XinpinItemCats { get; set; }
}
}