using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EntityFrameWorkLib { public class TurnEntity { public int TurnId { get; set; } public int DiceValue1 { get; set; } public int DiceValue2 { get; set; } } }