feature: Medication Tracking & Vital Sign Correlation
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
public class MedicationAdministration
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public Guid EncounterId { get; set; }
|
||||
public string DrugName { get; set; } = null!;
|
||||
public decimal Dose { get; set; }
|
||||
public string DoseUnit { get; set; } = null!;
|
||||
public string Route { get; set; } = null!;
|
||||
public DateTimeOffset AdministeredAt { get; set; }
|
||||
public string AdministeredBy { get; set; } = null!;
|
||||
|
||||
public Encounter Encounter { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user