14 lines
299 B
C#
14 lines
299 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SRDebugger.Services
|
|
{
|
|
public interface ISystemInformationService
|
|
{
|
|
IEnumerable<string> GetCategories();
|
|
|
|
IList<ISystemInfo> GetInfo(string category);
|
|
|
|
Dictionary<string, Dictionary<string, object>> CreateReport(bool includePrivate = false);
|
|
}
|
|
}
|