Match management view

This commit is contained in:
2026-05-06 16:21:50 +02:00
parent c70b9c554e
commit 5a51a8265d
15 changed files with 2554 additions and 7 deletions
+5
View File
@@ -11,8 +11,13 @@ public class Match
public int Id { get; set; }
public int TournamentId { get; set; }
public int? WinnerMatchId { get; set; }
public int? LoserMatchId { get; set; }
public List<TeamParticipant> Teams { get; set; } = [];
public List<Round> Rounds { get; set; } = [];
public Tournament Tournament { get; set; } = null!;
public Match? WinnerMatch { get; set; }
public Match? LoserMatch { get; set; }
}