| 1234567891011121314151617181920 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace Top.Api.Response
- {
- /// <summary>
- /// ItemSkusGetResponse.
- /// </summary>
- public class ItemSkusGetResponse : TopResponse
- {
- /// <summary>
- /// Sku列表
- /// </summary>
- [XmlArray("skus")]
- [XmlArrayItem("sku")]
- public List<Top.Api.Domain.Sku> Skus { get; set; }
- }
- }
|