IWindowsServer.cs 212 B

12345678910111213141516
  1. using System;
  2. namespace PLC_S
  3. {
  4. public interface IWindowsServer : IDisposable
  5. {
  6. bool Started
  7. {
  8. get;
  9. }
  10. void Start(int value);
  11. void Stop();
  12. }
  13. }