namespace MartianRobotsSolver { public class RobotSolution { public WorldInfo WorldInfo { get; internal set; } public string Input { get; set; } public List Robots { get; internal set; } = new List(); public string Output { get; internal set; } public DateTime DateTimeStamp { get; } } }