using System.Collections.Generic; namespace Inventory.Core { public class HealthMetricsReport { public double? CpuTemp { get; set; } public double? CpuLoad { get; set; } public double? CpuPower { get; set; } public double? GpuTemp { get; set; } public double? GpuLoad { get; set; } public double? GpuPower { get; set; } public double? GpuClock { get; set; } public double? RamLoad { get; set; } public List FanSpeeds { get; set; } = new List(); public List DriveHealth { get; set; } = new List(); public double? BatteryHealth { get; set; } } }