using System; namespace PLC_S { public interface IWindowsServer : IDisposable { bool Started { get; } void Start(int value); void Stop(); } }