Files
vigilcare-clinical/VigilCareClinicalAPI/Models/Records/Alert/AlertQualitySummaryResponse.cs
T
2026-06-24 03:01:00 +08:00

11 lines
330 B
C#

public record AlertQualitySummaryResponse(
DateTimeOffset PeriodStart,
DateTimeOffset PeriodEnd,
int TotalAlerts,
int TotalFeedback,
double AcknowledgementRate,
double FalsePositiveRate,
double UsefulRate,
double WouldActRate,
double AvgSecondsToAcknowledge,
double AvgSecondsToResolution);