Files
linker/cmonitor/plugins/system/report/SystemLinux.cs
2024-04-04 01:46:14 +08:00

38 lines
821 B
C#

namespace cmonitor.plugins.system.report
{
public sealed class SystemLinux : ISystem
{
public ReportDriveInfo[] GetAllDrives()
{
return Array.Empty<ReportDriveInfo>();
}
public double GetCpu()
{
return 0;
}
public double GetMemory()
{
return 0;
}
public Dictionary<string, SystemOptionKeyInfo> OptionKeys()
{
return new Dictionary<string, SystemOptionKeyInfo>();
}
public string OptionValues()
{
return string.Empty;
}
public void OptionUpdate(SystemOptionUpdateInfo[] registryUpdateInfo)
{
}
public bool Password(PasswordInputInfo command)
{
return true;
}
}
}