JushitaJdpUsersGetResponse.cs 621 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// JushitaJdpUsersGetResponse.
  8. /// </summary>
  9. public class JushitaJdpUsersGetResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 总记录数
  13. /// </summary>
  14. [XmlElement("total_results")]
  15. public long TotalResults { get; set; }
  16. /// <summary>
  17. /// 用户列表
  18. /// </summary>
  19. [XmlArray("users")]
  20. [XmlArrayItem("jdp_user")]
  21. public List<Top.Api.Domain.JdpUser> Users { get; set; }
  22. }
  23. }