10 lines
222 B
C#
10 lines
222 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace GreadyPoang.EntityLayer;
|
|
|
|
public class ScoreColumn
|
|
{
|
|
public string PlayerName { get; set; }
|
|
public ObservableCollection<ScoreCell> Cells { get; set; } = new();
|
|
}
|