| 12345678910111213141516171819 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace Top.Api.Response
- {
- /// <summary>
- /// ProductUpdateResponse.
- /// </summary>
- public class ProductUpdateResponse : TopResponse
- {
- /// <summary>
- /// 返回product数据结构中的:product_id,modified
- /// </summary>
- [XmlElement("product")]
- public Top.Api.Domain.Product Product { get; set; }
- }
- }
|