feature: Explainable Alerts

This commit is contained in:
voltsrage
2026-06-25 00:25:31 +08:00
parent 279add1e45
commit 666d683d67
61 changed files with 9553 additions and 125 deletions
@@ -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" },
};
}