feature:
Full SOFA Score: Data Layer + Scoring Engine Glasgow Coma Scale: Data Layer + Scoring Engine
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
public class SofaScore
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public Guid EncounterId { get; set; }
|
||||
public Guid PatientId { get; set; }
|
||||
public int TotalScore { get; set; }
|
||||
public int RespiratoryScore { get; set; }
|
||||
public int CoagulationScore { get; set; }
|
||||
public int LiverScore { get; set; }
|
||||
public int CardiovascularScore { get; set; }
|
||||
public int CnsScore { get; set; }
|
||||
public int RenalScore { get; set; }
|
||||
public bool IsBaseline { get; set; }
|
||||
public int? DeltaFromBaseline { get; set; }
|
||||
public string? StalenessFlags { get; set; }
|
||||
public DateTimeOffset CalculatedAt { get; set; }
|
||||
public DateTimeOffset CreatedAt { get; set; }
|
||||
|
||||
public Encounter Encounter { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user