namespace ElectronNET.API.Entities
{
///
///
///
public class MemoryInfo
{
///
/// The maximum amount of memory that has ever been pinned to actual physical RAM.
/// On macOS its value will always be 0.
///
public int PeakWorkingSetSize { get; set; }
///
/// Process id of the process.
///
public int Pid { get; set; }
///
/// The amount of memory not shared by other processes, such as JS heap or HTML
/// content.
///
public int PrivateBytes { get; set; }
///
/// The amount of memory shared between processes, typically memory consumed by the
/// Electron code itself
///
public int SharedBytes { get; set; }
///
/// The amount of memory currently pinned to actual physical RAM.
///
public int WorkingSetSize {get; set; }
}
}