IMonitor.cs 137 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace Monitor
  3. {
  4. public interface IMonitor
  5. {
  6. void Start();
  7. void Stop();
  8. }
  9. }