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