feature: Explainable Alerts
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
public static class GcsContributorBuilder
|
||||
{
|
||||
public static List<ScoreContributor> Build(int eye, int verbal, int motor) => new()
|
||||
{
|
||||
new() { Parameter = "Eye", Points = eye, RawValue = eye.ToString(), NormalRange = "4" },
|
||||
new() { Parameter = "Verbal", Points = verbal, RawValue = verbal.ToString(), NormalRange = "5" },
|
||||
new() { Parameter = "Motor", Points = motor, RawValue = motor.ToString(), NormalRange = "6" },
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user