mirror of
https://github.com/farcasclaudiu/MartianRobots.git
synced 2026-06-22 09:01:17 +03:00
13 lines
366 B
C#
13 lines
366 B
C#
namespace MartianRobotsSolver
|
|
{
|
|
public class RobotSolution
|
|
{
|
|
public WorldInfo WorldInfo { get; internal set; }
|
|
public string Input { get; set; }
|
|
public List<RobotInfo> Robots { get; internal set; } = new List<RobotInfo>();
|
|
public string Output { get; internal set; }
|
|
|
|
public DateTime DateTimeStamp { get; }
|
|
}
|
|
}
|