ItemSkusGetResponse.cs 425 B

1234567891011121314151617181920
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// ItemSkusGetResponse.
  8. /// </summary>
  9. public class ItemSkusGetResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// Sku列表
  13. /// </summary>
  14. [XmlArray("skus")]
  15. [XmlArrayItem("sku")]
  16. public List<Top.Api.Domain.Sku> Skus { get; set; }
  17. }
  18. }