feature: qSOFA Scoring & Sepsis Bundle Compliance

This commit is contained in:
voltsrage
2026-06-18 22:52:43 +08:00
parent 3c54feb38a
commit 4b46c09f90
34 changed files with 2351 additions and 18 deletions
@@ -0,0 +1,12 @@
public class SepsisBundleElement
{
public Guid Id { get; set; }
public Guid BundleId { get; set; }
public SepsisBundleElementType ElementType { get; set; }
public SepsisBundleElementStatus Status { get; set; } = SepsisBundleElementStatus.Pending;
public Guid? OrderId { get; set; }
public DateTimeOffset? CompletedAt { get; set; }
public SepsisBundle Bundle { get; set; } = null!;
public Order? Order { get; set; }
}