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