ItempropsGetResponse.cs 710 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// ItempropsGetResponse.
  8. /// </summary>
  9. public class ItempropsGetResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 商品属性
  13. /// </summary>
  14. [XmlArray("item_props")]
  15. [XmlArrayItem("item_prop")]
  16. public List<Top.Api.Domain.ItemProp> ItemProps { get; set; }
  17. /// <summary>
  18. /// 最近修改时间(只有取全量或增量的时候会返回该字段)。格式:yyyy-MM-dd HH:mm:ss
  19. /// </summary>
  20. [XmlElement("last_modified")]
  21. public string LastModified { get; set; }
  22. }
  23. }