diff --git a/source/Trek-12/Models/Cell.cs b/source/Trek-12/Models/Cell.cs new file mode 100644 index 0000000..182876a --- /dev/null +++ b/source/Trek-12/Models/Cell.cs @@ -0,0 +1,22 @@ +namespace Models; + +public class Cell : Position +{ + private int value; + public int Value + { + get => value; + set => value = value; + } + + private string background; + public string Background + { + get => background; + set => background = value; + } + + public Cell(int x, int y) : base(x, y) + { + } +} \ No newline at end of file