using Netch.Models; namespace Netch.Controllers { public abstract class EncryptedProxy : Controller { /// /// 启动 /// /// 服务器 /// 模式 /// 是否启动成功 public abstract bool Start(Server server, Mode mode); } }