namespace ConnectionsAPI.Database.Entities; public class ConnectionsCard { /// /// 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 ConnectionsCategoryId { get; set; } /// /// The associated category instance /// public virtual ConnectionsCategory? Category { get; set; } }