Börjat på RoundBuilding avsnittet , skall ändra save-svar från bool till int

This commit is contained in:
2025-09-05 14:52:08 +02:00
parent 4caeb21b0d
commit d3c9dcb208
10 changed files with 373 additions and 29 deletions

View File

@ -0,0 +1,16 @@
using Common.Library;
namespace GreadyPoang.EntityLayer;
public class RoundBuilderElement : EntityBase
{
public int ParticipantId { get; set; }
public string ParticipantName { get; set; } = string.Empty;
public int GameRoundRegNr { get; set; }
public int GameRegPoints { get; set; }
public int GameRoundPoints { get; set; }
public GamePointStatus Status { get; set; }
public DateTime GameRoundStartDate { get; set; }
public int GameRoundId { get; set; }
}