using System.Collections.Generic; namespace Monitor { public interface IMonitor { void Start(); void Stop(); } }