feature: Explainable Alerts
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
public record AlertGeneratedEvent(
|
||||
Guid AlertId, Guid EncounterId, Guid PatientId, string? Department,
|
||||
string AlertType, string Severity, DateTimeOffset TriggeredAt);
|
||||
string AlertType, string Severity, DateTimeOffset TriggeredAt,
|
||||
AlertExplanation? Explanation = null);
|
||||
@@ -0,0 +1,13 @@
|
||||
public record AlertResponse(
|
||||
Guid Id,
|
||||
Guid EncounterId,
|
||||
Guid PatientId,
|
||||
AlertType AlertType,
|
||||
AlertSeverity Severity,
|
||||
string Details,
|
||||
AlertStatus Status,
|
||||
DateTimeOffset TriggeredAt,
|
||||
DateTimeOffset? AcknowledgedAt,
|
||||
string? AcknowledgedBy,
|
||||
DateTimeOffset? ResolvedAt,
|
||||
AlertExplanation? Explanation);
|
||||
Reference in New Issue
Block a user