namespace ElectronNET.API.Entities
{
///
///
///
public class ProcessMetric
{
///
/// CPU usage of the process.
///
public CPUUsage Cpu { get; set; }
///
/// Memory information for the process.
///
public MemoryInfo Memory {get; set;}
///
/// Process id of the process.
///
public int Pid { get; set; }
///
/// Process type (Browser or Tab or GPU etc).
///
public string Type { get; set; }
}
}