Files
vigilcare-clinical/VigilCare.Simulation.Core/Client/Models/SofaResponse.cs
T
voltsrage 24f45851e9
CI / frontend (push) Canceled after 0s
CI / backend (push) Canceled after 8m32s
feature: In-App Simulation Runner (Backend)
2026-08-06 01:52:53 +08:00

10 lines
321 B
C#

namespace VigilCare.Simulation;
public record SofaResponse(
int TotalScore,
int RespiratoryScore, int CoagulationScore, int LiverScore,
int CardiovascularScore, int CnsScore, int RenalScore,
bool IsBaseline, int? DeltaFromBaseline,
SofaStalenessResponse? Staleness,
DateTimeOffset CalculatedAt);