mirror of
https://github.com/snltty/linker.git
synced 2025-12-24 12:38:04 +08:00
38 lines
821 B
C#
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;
|
|
}
|
|
}
|
|
}
|