Add project files.
This commit is contained in:
55
Gready_Poang.EntityLayer/HelperEntities/PlayerColumn.cs
Normal file
55
Gready_Poang.EntityLayer/HelperEntities/PlayerColumn.cs
Normal file
@ -0,0 +1,55 @@
|
||||
using Common.Library;
|
||||
|
||||
namespace GreadyPoang.EntityLayer;
|
||||
|
||||
public class PlayerColumn : EntityBase
|
||||
{
|
||||
public PlayerColumn()
|
||||
{
|
||||
_playerName = string.Empty;
|
||||
_values = new List<string>();
|
||||
}
|
||||
|
||||
|
||||
private int _playerId;
|
||||
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));
|
||||
}
|
||||
}
|
||||
|
||||
public int PlayerId
|
||||
{
|
||||
get { return _playerId; }
|
||||
set
|
||||
{
|
||||
_playerId = value;
|
||||
RaisePropertyChanged(nameof(PlayerId));
|
||||
}
|
||||
}
|
||||
|
||||
private int _playerPoints;
|
||||
|
||||
public int PlayerPoints
|
||||
{
|
||||
get { return _playerPoints; }
|
||||
set { _playerPoints = value; }
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user