Files
netch/Netch/Interfaces/IController.cs
2021-07-15 20:15:34 +08:00

11 lines
179 B
C#

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