Files

14 lines
547 B
C#

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>();
}