using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// ProductGetResponse. /// public class ProductGetResponse : TopResponse { /// /// 返回具体信息为入参fields请求的字段信息 /// [XmlElement("product")] public Top.Api.Domain.Product Product { get; set; } } }