Files
linker/cmonitor/plugins/command/report/ICommandLine.cs
2024-04-01 09:49:35 +08:00

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);
}
}