feature: Corrections and Supersession
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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<LiveObservation> Observations { get; set; } = new List<LiveObservation>();
|
||||
}
|
||||
Reference in New Issue
Block a user