Files
2026-02-21 16:45:37 +08:00

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();
}
}