ISystemInformationService.cs 385 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. namespace SRDebugger.Services
  4. {
  5. public interface ISystemInformationService
  6. {
  7. IEnumerable<string> GetCategories();
  8. IList<InfoEntry> GetInfo(string category);
  9. void Add(InfoEntry info, string category = "Default");
  10. Dictionary<string, Dictionary<string, object>> CreateReport(bool includePrivate = false);
  11. }
  12. }