first commit

This commit is contained in:
2019-04-19 11:04:11 +08:00
commit 8019fef16d
271 changed files with 40588 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections.Generic;
using Ultron.Proxy.Models;
namespace Ultron.Proxy
{
public class Config
{
public int ProviderPort; //代理转发服务端口
public int ProviderConfigPort; //配置服务端口
public string ProviderAddress; //代理服务器地址
public List<ClientApp> Clients = new List<ClientApp>();//客户端app
}
}