feature: Medication Tracking & Vital Sign Correlation

This commit is contained in:
voltsrage
2026-06-19 10:47:55 +08:00
parent e2d40331b7
commit 5c7e37471b
29 changed files with 2512 additions and 4 deletions
@@ -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!;
}