Nu finns registrering av poäng och struktur för att lägga ut på ett teststadium

This commit is contained in:
2025-09-19 08:54:30 +02:00
parent 34c7b77e1a
commit 0a56d8ffc8
7 changed files with 258 additions and 14 deletions

View File

@ -0,0 +1,32 @@
using Common.Library;
namespace GreadyPoang.EntityLayer;
public class PlayerColumn : EntityBase
{
public PlayerColumn()
{
_playerName = string.Empty;
_values = new List<string>();
}
private string _playerName;
private List<string> _values;
public string PlayerName
{
get { return _playerName; }
set
{
_playerName = value;
RaisePropertyChanged(nameof(PlayerName));
}
}
public List<string> Values
{
get { return _values; }
set
{
_values = value;
RaisePropertyChanged(nameof(Values));
}
}
}