Untitled
namespace Gaming.Crossword.Site.Models.Crossword; public class Word { public Word() { } public Word(string text, string clue, int points, int row, int column, bool vertical) { Text = text; Clue = clue; Points = points; Row = row; Column = column; Vertical = vertical; } public string Text { get; set; } = string.Empty; public string Clue { get; set; } = string.Empty; public int Points { get; set; } public int Row { get; set; } public int Column { get; set; } public bool Vertical { get; set; } }
Leave a Comment