Files
netch/Netch/Interfaces/IController.cs
ChsBuffer 8fb2bdcee9 C# 10
2021-11-13 00:44:09 +08:00

8 lines
126 B
C#

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