using Data.EF.Dice; using Data.EF.Dice.Faces; using Data.EF.Players; namespace Data.EF.Games { public class TurnEntity { public Guid ID { get; set; } public DateTime When { get; set; } public PlayerEntity Player { get; set; } public List NumberDice { get; set; } public List NumberFaces { get; set; } public List ImageDice { get; set; } public List ImageFaces { get; set; } public List ColorDice { get; set; } public List ColorFaces { get; set; } } }