Börjat på RoundBuilding avsnittet , skall ändra save-svar från bool till int
This commit is contained in:
@ -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; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user