- .NET 8 WPF app with full MVVM architecture - One-click boost: CPU, RAM, GPU, network, services, timer resolution - Real-time system monitor (LibreHardwareMonitor) - Auto game detection (30+ games) - RAM optimizer with kernel-level cleanup - Network optimizer (TCP registry tweaks) - Service manager, process manager, shader cache cleaner - Desktop widget overlay - Debug log viewer - Custom dark gaming theme with trans pride colors - 84 unit tests (xUnit) - Inno Setup installer script - Landing page website
16 lines
472 B
C#
16 lines
472 B
C#
namespace SpdUp.Models;
|
|
|
|
/// <summary>
|
|
/// Represents a lightweight process view for the Process Manager.
|
|
/// </summary>
|
|
public sealed class ProcessEntry
|
|
{
|
|
public int Pid { get; init; }
|
|
public string Name { get; init; } = string.Empty;
|
|
public string? WindowTitle { get; init; }
|
|
public float CpuPercent { get; set; }
|
|
public float MemoryMB { get; set; }
|
|
public string PriorityClass { get; set; } = "Normal";
|
|
public bool IsSystem { get; init; }
|
|
}
|