13 lines
344 B
C#
13 lines
344 B
C#
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); |