Nu fungerar RoundRunningView med minimal codeBehind
This commit is contained in:
7
GreadyPoang.EntityLayer/HelperEntities/ScoreCell.cs
Normal file
7
GreadyPoang.EntityLayer/HelperEntities/ScoreCell.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace GreadyPoang.EntityLayer;
|
||||
|
||||
public class ScoreCell
|
||||
{
|
||||
public string Text { get; set; }
|
||||
public bool IsHeader { get; set; }
|
||||
}
|
||||
9
GreadyPoang.EntityLayer/HelperEntities/ScoreColumn.cs
Normal file
9
GreadyPoang.EntityLayer/HelperEntities/ScoreColumn.cs
Normal file
@ -0,0 +1,9 @@
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace GreadyPoang.EntityLayer;
|
||||
|
||||
public class ScoreColumn
|
||||
{
|
||||
public string PlayerName { get; set; }
|
||||
public ObservableCollection<ScoreCell> Cells { get; set; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user