ProductGetResponse.cs 449 B

12345678910111213141516171819
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// ProductGetResponse.
  8. /// </summary>
  9. public class ProductGetResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 返回具体信息为入参fields请求的字段信息
  13. /// </summary>
  14. [XmlElement("product")]
  15. public Top.Api.Domain.Product Product { get; set; }
  16. }
  17. }