namespace DCGEngine.Database.Models; /// /// A deck consisting of multiple stored in the DB. /// public abstract class DeckEntry : BaseEntity { /// /// How this deck is referred to internally. /// public virtual string InternalName { get; set; } /// /// The cards present in this deck. /// public virtual List Cards { get; set; } }