123456789101112131415161718 |
- using LJLib.Net.SPI.Com;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace LJProxy.Models
- {
- public class GetProxyDomainListRequest : LJRequest
- {
-
- }
- public class GetProxyDomainListResponse:LJResponse
- {
- public List<string> DomainList { get; set; }
- }
- }
|