OutputService.cs 243 B

123456789101112
  1. namespace PLCIOPointTool.Services;
  2. public class OutputService : IOutputService
  3. {
  4. public event EventHandler<string>? MessageReceived;
  5. public void Output(string message)
  6. {
  7. MessageReceived?.Invoke(null, message);
  8. }
  9. }