11 lines
367 B
C#
11 lines
367 B
C#
namespace Inventory.Core
|
|
{
|
|
public class DriveHealthInfo
|
|
{
|
|
public string? Model { get; set; }
|
|
public string? Name { get; set; }
|
|
public bool? IsFailing { get; set; } // S.M.A.R.T. Predict Failure
|
|
public double? Temperature { get; set; }
|
|
public double? HealthPercentage { get; set; } // e.g., SSD life remaining
|
|
}
|
|
} |