- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace LJProxy.Settings
- {
- public class AppSettings
- {
- public string L1SvrUrl { get; set; }
- public int ThreadSize { get; set; }
- public List<string> ProxyDomainList { get; set; }
- }
- }
|