GetUserList.cs 572 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using JLHHJSvr.Com.Model;
  6. using LJLib.Net.SPI.Com;
  7. namespace JLHHJSvr.Com
  8. {
  9. /// <summary>
  10. /// 获取用户列表
  11. /// </summary>
  12. public sealed class GetUserListRequest : ILJRequest<GetUserListResponse>
  13. {
  14. public string GetApiName()
  15. {
  16. return "GetUserList";
  17. }
  18. public string token { get; set; }
  19. }
  20. public sealed class GetUserListResponse : LJResponse
  21. {
  22. public List<User> userList { get; set; }
  23. }
  24. }