mirror of
https://github.com/bolucat/Archive.git
synced 2025-10-04 07:47:27 +08:00
8 lines
126 B
C#
8 lines
126 B
C#
namespace Netch.Interfaces;
|
|
|
|
public interface IController
|
|
{
|
|
public string Name { get; }
|
|
|
|
public Task StopAsync();
|
|
} |