ItemcatsGetResponse.cs 657 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// ItemcatsGetResponse.
  8. /// </summary>
  9. public class ItemcatsGetResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 商品类目结构
  13. /// </summary>
  14. [XmlArray("item_cats")]
  15. [XmlArrayItem("item_cat")]
  16. public List<Top.Api.Domain.ItemCat> ItemCats { get; set; }
  17. /// <summary>
  18. /// 最近修改时间(如果取增量,会返回该字段)。
  19. /// </summary>
  20. [XmlElement("last_modified")]
  21. public string LastModified { get; set; }
  22. }
  23. }