IOutputService.cs 158 B

123456789
  1. namespace PLCIOPointTool.Services;
  2. public interface IOutputService
  3. {
  4. void Output(string message);
  5. event EventHandler<string>? MessageReceived;
  6. }