using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// ProductAddResponse. /// public class ProductAddResponse : TopResponse { /// /// 产品结构 /// [XmlElement("product")] public Top.Api.Domain.Product Product { get; set; } } }