mirror of
https://github.com/snltty/linker.git
synced 2025-12-24 12:38:04 +08:00
16 lines
268 B
C#
16 lines
268 B
C#
namespace cmonitor.plugins.command.report
|
|
{
|
|
public interface ICommandLine
|
|
{
|
|
Action<int, string> OnData { get; set; }
|
|
|
|
int Start();
|
|
|
|
void Write(int id, string command);
|
|
|
|
void Alive(int id);
|
|
|
|
void Stop(int id);
|
|
}
|
|
}
|