using System.Collections.Generic; namespace Terminal { public interface ITerminalDisplay { void GetTerminalState(); void Start(); void Stop(); } }