TmcGroupsGetResponse.cs 608 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// TmcGroupsGetResponse.
  8. /// </summary>
  9. public class TmcGroupsGetResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// dasdasd
  13. /// </summary>
  14. [XmlArray("groups")]
  15. [XmlArrayItem("tmc_group")]
  16. public List<Top.Api.Domain.TmcGroup> Groups { get; set; }
  17. /// <summary>
  18. /// 分组总数
  19. /// </summary>
  20. [XmlElement("total_results")]
  21. public long TotalResults { get; set; }
  22. }
  23. }