namespace StellaOps.AirGap.Time.Models; public sealed record StalenessEvaluation( long AgeSeconds, long WarningSeconds, long BreachSeconds, bool IsWarning, bool IsBreach) { public static StalenessEvaluation Unknown => new(0, 0, 0, false, false); }