This commit is contained in:
2019-12-09 20:45:31 -05:00
parent cc40fd780a
commit 163e35f732
7 changed files with 1197 additions and 2 deletions

8
Day6/MapObject.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace Advent
{
public class MapObject
{
public string Name { get; set; }
public MapObject Parent { get; set; }
}
}