ItemcatFeaturesGetResponse.cs 465 B

1234567891011121314151617181920
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// ItemcatFeaturesGetResponse.
  8. /// </summary>
  9. public class ItemcatFeaturesGetResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// Feature对象列表
  13. /// </summary>
  14. [XmlArray("features")]
  15. [XmlArrayItem("feature")]
  16. public List<Top.Api.Domain.Feature> Features { get; set; }
  17. }
  18. }