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