| 12345678910111213141516171819 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace Top.Api.Response
- {
- /// <summary>
- /// ProductImgUploadResponse.
- /// </summary>
- public class ProductImgUploadResponse : TopResponse
- {
- /// <summary>
- /// 返回产品图片结构中的:url,id,created,modified
- /// </summary>
- [XmlElement("product_img")]
- public Top.Api.Domain.ProductImg ProductImg { get; set; }
- }
- }
|