DelUserList.cs 556 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using LJLib.Net.SPI.Com;
  6. namespace JLHHJSvr.Com
  7. {
  8. /// <summary>
  9. /// 删除用户列表
  10. /// </summary>
  11. public sealed class DelUserListRequest : ILJRequest<DelUserListResponse>
  12. {
  13. public override string GetApiName()
  14. {
  15. return "DelUserList";
  16. }
  17. public string token { get; set; }
  18. public List<int> useridList { get; set; }
  19. }
  20. public sealed class DelUserListResponse : LJResponse
  21. {
  22. }
  23. }