namespace ConnectionsAPI.Database.Entities
{
public class PuzzleCard
{
///
/// Primary key of the entity
///
public int Id { get; set; }
///
/// The contents of this card (the word)
///
public string Content { get; set; } = string.Empty;
///
/// The initial position of this card on the grid
///
public int Position { get; set; }
///
/// The ID of the associated Connections category
///
public int PuzzleCategoryId { get; set; }
///
/// The associated category instance
///
public virtual PuzzleCategory? PuzzleCategory { get; set; }
}
}