feature: In-App Simulation Runner (Backend)
CI / frontend (push) Canceled after 0s
CI / backend (push) Canceled after 8m32s

This commit is contained in:
voltsrage
2026-08-06 01:52:53 +08:00
parent 943d41339c
commit 24f45851e9
83 changed files with 3974 additions and 120 deletions
@@ -16,5 +16,8 @@ public class Patient
public string Status { get; set; } = "active";
public DateTimeOffset CreatedAt { get; set; }
/// <summary>True when this patient was created by the simulation runner. Never set for ingested clinical data.</summary>
public bool IsSimulated { get; set; }
public ICollection<Encounter> Encounters { get; set; } = new List<Encounter>();
}