| 12345678910111213141516171819 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace Top.Api.Response
- {
- /// <summary>
- /// ItemUpdateDelistingResponse.
- /// </summary>
- public class ItemUpdateDelistingResponse : TopResponse
- {
- /// <summary>
- /// 返回商品更新信息:返回的结果是:num_iid和modified
- /// </summary>
- [XmlElement("item")]
- public Top.Api.Domain.Item Item { get; set; }
- }
- }
|