mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-10 05:36:57 +00:00
20 lines
545 B
C#
20 lines
545 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class CPUUsage
|
|
{
|
|
/// <summary>
|
|
/// The number of average idle cpu wakeups per second since the last call to
|
|
/// getCPUUsage.First call returns 0.
|
|
/// </summary>
|
|
public int IdleWakeupsPerSecond { get; set; }
|
|
|
|
/// <summary>
|
|
/// Percentage of CPU used since the last call to getCPUUsage. First call returns 0.
|
|
/// </summary>
|
|
public int PercentCPUUsage { get; set; }
|
|
}
|
|
}
|