feature:
Full SOFA Score: Data Layer + Scoring Engine Glasgow Coma Scale: Data Layer + Scoring Engine
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
public class GcsScore
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public Guid EncounterId { get; set; }
|
||||
public Guid PatientId { get; set; }
|
||||
public int EyeScore { get; set; }
|
||||
public int VerbalScore { get; set; }
|
||||
public int MotorScore { get; set; }
|
||||
public int TotalScore { get; set; }
|
||||
public string Classification { get; set; } = null!;
|
||||
public DateTimeOffset CalculatedAt { get; set; }
|
||||
public DateTimeOffset CreatedAt { get; set; }
|
||||
|
||||
public Encounter Encounter { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user