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()