Nu är det ordning på funktionaliteten när det gäller att hantera spelare nya spelronder och den poänghistorik som lagras

This commit is contained in:
2025-09-23 22:11:02 +02:00
parent d20c0095cc
commit 8f8f8e70e9
14 changed files with 229 additions and 74 deletions

View File

@ -1,6 +1,8 @@
namespace GreadyPoang.EntityLayer;
using Common.Library;
public class RoundBuilderGroup
namespace GreadyPoang.EntityLayer;
public class RoundBuilderGroup : EntityBase
{
public RoundBuilderGroup()
{
@ -47,6 +49,7 @@ public class RoundBuilderGroup
set
{
_elements = value;
RaisePropertyChanged(nameof(Elements));
// No need to raise property changed for this example
}
}