ProductPropimgUploadResponse.cs 495 B

12345678910111213141516171819
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// ProductPropimgUploadResponse.
  8. /// </summary>
  9. public class ProductPropimgUploadResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 支持返回产品属性图片中的:url,id,created,modified
  13. /// </summary>
  14. [XmlElement("product_prop_img")]
  15. public Top.Api.Domain.ProductPropImg ProductPropImg { get; set; }
  16. }
  17. }