using System; using System.Collections.Generic; namespace SRDebugger.Services { public interface ISystemInformationService { IEnumerable GetCategories(); IList GetInfo(string category); void Add(InfoEntry info, string category = "Default"); Dictionary> CreateReport(bool includePrivate = false); } }