Files
vigilcare-clinical/VigilCareClinicalAPI/Domains/Entities/QsofaEvaluation.cs
T
voltsrage 7751d6df06 fix:
No SOFA trend chart or organ-system timeline
No GCS trend chart or component history
No qSOFA history view
2026-06-23 18:00:43 +08:00

16 lines
523 B
C#

public class QsofaEvaluation
{
public Guid Id { get; set; }
public Guid EncounterId { get; set; }
public Guid PatientId { get; set; }
public int ActiveCriteria { get; set; }
public decimal? RespRate { get; set; }
public decimal? SystolicBp { get; set; }
public decimal? Avpu { get; set; }
public bool ScreenAlertFired { get; set; }
public DateTimeOffset EvaluatedAt { get; set; }
public DateTimeOffset CreatedAt { get; set; }
public Encounter Encounter { get; set; } = null!;
}