namespace Netch.Controllers { public interface IController { /// /// 控制器名 /// public string Name { get; } /// /// 停止 /// public void Stop(); } }