Efter flytt av statusfält och åter byygt

This commit is contained in:
2025-09-14 12:03:16 +02:00
parent b4898660f2
commit 4e2b71af9f
8 changed files with 336 additions and 45 deletions

View File

@ -44,13 +44,13 @@ public class GameRound : EntityBase
}
[Column("GameStatus")]
public GamePointStatus PointStatus
public GamePointStatus GameStatus
{
get { return _gameStatus; }
set
{
_gameStatus = value;
RaisePropertyChanged(nameof(PointStatus));
RaisePropertyChanged(nameof(GameStatus));
}
}