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