public class PatientEncounterDocument { public string EncounterId { get; set; } = null!; public string PatientId { get; set; } = null!; public string Mrn { get; set; } = null!; public string PatientName { get; set; } = null!; public string Department { get; set; } = null!; public string Status { get; set; } = null!; public string AttendingPhysician { get; set; } = null!; public DateTimeOffset AdmittedAt { get; set; } public int OpenAlertCount { get; set; } public DateTimeOffset? LastObservationAt { get; set; } }