mirror of
https://github.com/ckaczor/Advent2019.git
synced 2026-01-13 17:22:15 -05:00
9 lines
150 B
C#
9 lines
150 B
C#
namespace Advent
|
|
{
|
|
public class MapObject
|
|
{
|
|
public string Name { get; set; }
|
|
public MapObject Parent { get; set; }
|
|
}
|
|
}
|