namespace ElectronNET.API.Entities
{
///
///
///
public class MemoryInfo
{
///
/// The amount of memory currently pinned to actual physical RAM.
///
public int WorkingSetSize { get; set; }
///
/// The maximum amount of memory that has ever been pinned to actual physical RAM.
///
public int PeakWorkingSetSize { get; set; }
///
/// The amount of memory not shared by other processes, such as JS heap or HTML
/// content.
///
public int PrivateBytes { get; set; }
}
}