mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
15 lines
286 B
C#
15 lines
286 B
C#
namespace Netch.Controllers
|
|
{
|
|
public interface IController
|
|
{
|
|
/// <summary>
|
|
/// 控制器名
|
|
/// </summary>
|
|
public string Name { get; }
|
|
|
|
/// <summary>
|
|
/// 停止
|
|
/// </summary>
|
|
public void Stop();
|
|
}
|
|
} |