mirror of
https://github.com/netchx/netch.git
synced 2026-03-24 18:39:47 +08:00
11 lines
179 B
C#
11 lines
179 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Netch.Interfaces
|
|
{
|
|
public interface IController
|
|
{
|
|
public string Name { get; }
|
|
|
|
public Task StopAsync();
|
|
}
|
|
} |