11 lines
444 B
C#
11 lines
444 B
C#
public class ClinicalAlertDocument
|
|
{
|
|
public string AlertId { get; set; } = null!;
|
|
public string EncounterId { get; set; } = null!;
|
|
public string PatientId { get; set; } = null!;
|
|
public string Department { get; set; } = null!;
|
|
public string AlertType { get; set; } = null!;
|
|
public string Severity { get; set; } = null!;
|
|
public string Status { get; set; } = null!;
|
|
public DateTimeOffset TriggeredAt { get; set; }
|
|
} |