diff --git a/source/Trek-12/Models/Map.cs b/source/Trek-12/Models/Map.cs new file mode 100644 index 0000000..2fa974f --- /dev/null +++ b/source/Trek-12/Models/Map.cs @@ -0,0 +1,14 @@ +namespace Models; + +public class Map +{ + public List Cells { get; private set; } + + public string Background { get; private set; } + + public Map(List cells, string background) + { + Cells = cells; + Background = background; + } +} \ No newline at end of file