Files
netch/Netch/Interfaces/IController.cs
2021-06-26 06:14:08 +08:00

9 lines
143 B
C#

namespace Netch.Interfaces
{
public interface IController
{
public string Name { get; }
public void Stop();
}
}