Files
MartianRobots/MartianRobots.Web/Shared/RobotSolutionModel.cs
T
2022-09-13 02:43:55 +03:00

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; }
}
}