Tournament management

This commit is contained in:
2026-05-06 13:28:10 +02:00
parent 67d27ab21c
commit c70b9c554e
20 changed files with 1667 additions and 36 deletions
+3 -2
View File
@@ -14,7 +14,8 @@ public class 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; }
public List<Player> Players { get; set; } = [];
public List<TeamParticipant> Matches { get; set; } = [];
public List<TournamentTeam> TournamentTeams { get; set; } = [];
}