using System.Collections.Generic; namespace SRDebugger.Services { public interface IConsoleService { int ErrorCount { get; } int WarningCount { get; } int InfoCount { get; } IList Entries { get; } IList AllEntries { get; } event ConsoleUpdatedEventHandler Updated; void Clear(); } }