mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
9 lines
143 B
C#
9 lines
143 B
C#
namespace Netch.Interfaces
|
|
{
|
|
public interface IController
|
|
{
|
|
public string Name { get; }
|
|
|
|
public void Stop();
|
|
}
|
|
} |