From 8a8803395f15a1e6c4a2924dc1d050ce8e7906aa Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Mon, 9 Feb 2026 20:06:14 +0100 Subject: [PATCH] [fix:] comment, BIG BIG change --- structs.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structs.cs b/structs.cs index 5fed5e6..739fefd 100644 --- a/structs.cs +++ b/structs.cs @@ -33,7 +33,7 @@ public abstract class Sport public abstract class Student { public string Name { get; set; } = ""; // Name des Schülers - public Sport[] SelectedCourses { get; set; } = new Sport[4]; // Kurswahl + public Sport[] SelectedCourses { get; set; } = new Sport[4]; // Kurswahl public List? Result { get; set; } = null; protected Student()