Nu verkar spelarfördelningen fungerar och poäng räknas up

This commit is contained in:
2025-09-21 13:58:35 +02:00
parent 0e2a283239
commit d20c0095cc
3 changed files with 61 additions and 8 deletions

View File

@ -9,6 +9,9 @@ public class PlayerColumn : EntityBase
_playerName = string.Empty;
_values = new List<string>();
}
private int _playerId;
private string _playerName;
private List<string> _values;
public string PlayerName
@ -29,4 +32,24 @@ public class PlayerColumn : EntityBase
RaisePropertyChanged(nameof(Values));
}
}
public int PlayerId
{
get { return _playerId; }
set
{
_playerId = value;
RaisePropertyChanged(nameof(PlayerId));
}
}
private int _playerPoints;
public int PlayerPoints
{
get { return _playerPoints; }
set { _playerPoints = value; }
}
}