fix: make roundstate enum names consistent

This commit is contained in:
2026-04-09 11:49:30 +02:00
parent a7a354fec7
commit 929dc09274
+1 -1
View File
@@ -18,7 +18,7 @@ public class Round
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
public int MatchId { get; set; }
public RoundState State { get; set; } = RoundState.WAITING;
public RoundState State { get; set; } = RoundState.Waiting;
public required List<PlayerParticipant> Players;
public required Match Match { get; set; }