namespace SpdUp.Models; /// /// Represents a lightweight process view for the Process Manager. /// 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; } }