DelRoadList.cs 483 B

12345678910111213141516171819202122
  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. public sealed class DelRoadListRequest : ILJRequest<DelRoadListResponse>
  9. {
  10. public string GetApiName()
  11. {
  12. return "DelRoadList";
  13. }
  14. public string token { get; set; }
  15. public List<int> roadidList { get; set; }
  16. }
  17. public sealed class DelRoadListResponse : LJResponse
  18. {
  19. }
  20. }