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