using System.Collections.ObjectModel; namespace GreadyPoang.EntityLayer; public class ScoreColumn { public string PlayerName { get; set; } public ObservableCollection Cells { get; set; } = new(); }