You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
561 B
20 lines
561 B
using Data.EF.Dice.Faces;
|
|
using Data.EF.Games;
|
|
using Data.EF.Joins;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Data.EF.Dice
|
|
{
|
|
/// <summary>
|
|
/// not designed to be instantiated, but not abstract in order to allow extensions
|
|
/// </summary>
|
|
///
|
|
public class DieEntity
|
|
{
|
|
public Guid ID { get; set; }
|
|
public ICollection<TurnEntity> Turns { get; set; } // many to many
|
|
public List<DieTurn> DieTurns { get; set; }
|
|
public ICollection<FaceEntity> Faces { get; set; } // one to many
|
|
}
|
|
}
|