No SOFA trend chart or organ-system timeline No GCS trend chart or component history No qSOFA history view
16 lines
523 B
C#
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!;
|
|
}
|