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
+2 -2
View File
@@ -19,7 +19,7 @@ public class Round
public int MatchId { get; set; }
public RoundState State { get; set; } = RoundState.Waiting;
public required List<PlayerParticipant> Players;
public required Match Match { get; set; }
public List<PlayerParticipant> Players { get; set; } = [];
public Match Match { get; set; } = null!;
}