Team Registration view v1

This commit is contained in:
2026-05-06 09:02:00 +02:00
parent 1e25ca809b
commit a14cc8a0d9
12 changed files with 1120 additions and 25 deletions
+3
View File
@@ -11,6 +11,9 @@ public class Team
public int Id { get; set; }
public string Name { get; set; } = "Example Team";
public int? LeaderId { get; set; }
public Player? Leader { get; set; }
public required List<Player> Players { get; set; }
public required List<TeamParticipant> Matches { get; set; }