public class AlertQualityMetric { public Guid Id { get; set; } public AlertType AlertType { get; set; } public DateTimeOffset WindowStart { get; set; } public DateTimeOffset WindowEnd { get; set; } public int TotalAlerts { get; set; } public int AcknowledgedCount { get; set; } public int ResolvedCount { get; set; } public int EscalatedCount { get; set; } public int FeedbackUsefulCount { get; set; } public int FeedbackFalsePositiveCount { get; set; } public int FeedbackWouldActCount { get; set; } public int FeedbackCount { get; set; } public double AcknowledgementRate { get; set; } public double FalsePositiveRate { get; set; } public double UsefulRate { get; set; } public double WouldActRate { get; set; } public double AvgSecondsToAcknowledge { get; set; } public double AvgSecondsToResolution { get; set; } public DateTimeOffset ComputedAt { get; set; } }