SellerAuthorize.cs 907 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Domain
  5. {
  6. /// <summary>
  7. /// SellerAuthorize Data Structure.
  8. /// </summary>
  9. [Serializable]
  10. public class SellerAuthorize : TopObject
  11. {
  12. /// <summary>
  13. /// 品牌列表
  14. /// </summary>
  15. [XmlArray("brands")]
  16. [XmlArrayItem("brand")]
  17. public List<Top.Api.Domain.Brand> Brands { get; set; }
  18. /// <summary>
  19. /// 类目列表
  20. /// </summary>
  21. [XmlArray("item_cats")]
  22. [XmlArrayItem("item_cat")]
  23. public List<Top.Api.Domain.ItemCat> ItemCats { get; set; }
  24. /// <summary>
  25. /// 商品类目结构
  26. /// </summary>
  27. [XmlArray("xinpin_item_cats")]
  28. [XmlArrayItem("item_cat")]
  29. public List<Top.Api.Domain.ItemCat> XinpinItemCats { get; set; }
  30. }
  31. }