using Microsoft.EntityFrameworkCore;
namespace DCGEngine.Database.Models;
///
/// A that is in a X times.
///
[Owned]
public class DeckCard
{
///
/// The card in the deck.
///
public virtual CardEntry Card { get; set; }
///
/// The number of the card that is in the deck.
///
public virtual int Count { get; set; }
///
/// The deck this belongs to.
///
public virtual DeckEntry Deck { get; set; }
}