mirror of
https://github.com/farcasclaudiu/MartianRobots.git
synced 2026-06-22 07:01:15 +03:00
17 lines
342 B
C#
17 lines
342 B
C#
namespace MartianRobots.Web.Shared
|
|
{
|
|
public class RobotSolutionModel
|
|
{
|
|
public RobotSolutionModel()
|
|
{
|
|
|
|
}
|
|
|
|
public string Input { get; set; }
|
|
public string Output { get; set; }
|
|
public int RobotLosts { get; set; }
|
|
|
|
public DateTime DateTimeStamp { get; set; }
|
|
}
|
|
}
|