public class LiveEncounter { public Guid Id { get; set; } public Guid PatientId { get; set; } public DateTimeOffset AdmissionDate { get; set; } public Department? Department { get; set; } public string? RoomBed { get; set; } public string? AdmissionReason { get; set; } public string? DischargeDiagnosis { get; set; } public string Status { get; set; } = "active"; public DateTimeOffset CreatedAt { get; set; } public ICollection Observations { get; set; } = new List(); }