Initial commit: SpdUp Windows Gaming Booster v1.0.0
- .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
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace SpdUp.Models;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a Windows service relevant to the boost process.
|
||||
/// </summary>
|
||||
public sealed class ServiceEntry
|
||||
{
|
||||
public string ServiceName { get; init; } = string.Empty;
|
||||
public string DisplayName { get; init; } = string.Empty;
|
||||
public string Status { get; set; } = "Unknown";
|
||||
public bool WasRunningBeforeBoost { get; set; }
|
||||
public string Description { get; init; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user