Files
vigilcare-clinical/VigilCareClinicalAPI/Domains/Entities/News2Score.cs
T

19 lines
705 B
C#

public class News2Score
{
public Guid Id { get; set; }
public Guid EncounterId { get; set; }
public Guid PatientId { get; set; }
public int TotalScore { get; set; }
public string RiskLevel { get; set; } = null!;
public int RespRateScore { get; set; }
public int Spo2Score { get; set; }
public int SystolicBpScore { get; set; }
public int HeartRateScore { get; set; }
public int ConsciousnessScore { get; set; }
public int TemperatureScore { get; set; }
public int SupplementalO2Score { get; set; }
public bool HasSingleParamThree { get; set; }
public DateTimeOffset CalculatedAt { get; set; }
public Encounter Encounter { get; set; } = null!;
}