@ -0,0 +1,14 @@
namespace Models;
public class Map
{
public List<Cell> Cells { get; private set; }
public string Background { get; private set; }
public Map(List<Cell> cells, string background)
Cells = cells;
Background = background;
}