6 lines
184 B
C#
6 lines
184 B
C#
namespace VigilCare.Simulation;
|
|
|
|
public record GcsResponse(
|
|
int EyeScore, int VerbalScore, int MotorScore,
|
|
int TotalScore, string Classification, DateTimeOffset CalculatedAt);
|