GetProxyDomainList.cs 370 B

123456789101112131415161718
  1. using LJLib.Net.SPI.Com;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace LJProxy.Models
  7. {
  8. public class GetProxyDomainListRequest : LJRequest
  9. {
  10. }
  11. public class GetProxyDomainListResponse:LJResponse
  12. {
  13. public List<string> DomainList { get; set; }
  14. }
  15. }