22 lines
335 B
C#
22 lines
335 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SRDebugger.Services
|
|
{
|
|
public interface IConsoleService
|
|
{
|
|
int ErrorCount { get; }
|
|
|
|
int WarningCount { get; }
|
|
|
|
int InfoCount { get; }
|
|
|
|
IList<ConsoleEntry> Entries { get; }
|
|
|
|
IList<ConsoleEntry> AllEntries { get; }
|
|
|
|
event ConsoleUpdatedEventHandler Updated;
|
|
|
|
void Clear();
|
|
}
|
|
}
|