- .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
17 lines
330 B
C#
17 lines
330 B
C#
using SpdUp.Core;
|
||
|
||
namespace SpdUp.ViewModels;
|
||
|
||
/// <summary>
|
||
/// System Monitor page – just binds to MainViewModel's live metrics.
|
||
/// </summary>
|
||
public sealed class MonitorViewModel : ObservableObject
|
||
{
|
||
public MainViewModel Main { get; }
|
||
|
||
public MonitorViewModel(MainViewModel main)
|
||
{
|
||
Main = main;
|
||
}
|
||
}
|