Files
Archive/netch/Netch/Interfaces/IController.cs
2024-03-05 02:32:38 -08:00

8 lines
126 B
C#

namespace Netch.Interfaces;
public interface IController
{
public string Name { get; }
public Task StopAsync();
}