Rob / Application /DTOs /RobotDTOs /CreateRobotDTO.cs
danylokhodus's picture
Initial clean backend commit
70556b7
Raw
History Blame Contribute Delete
260 Bytes
namespace Application.DTOs.RobotDTOs
{
public class CreateRobotDTO
{
public string Name { get; set; }
public string Model { get; set; }
public RobotType Type { get; set; }
public int? CurrentNodeId { get; set; }
}
}