Init project
This commit is contained in:
18
RobotApp.VDA5050/Order/Corridor.cs
Normal file
18
RobotApp.VDA5050/Order/Corridor.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace RobotApp.VDA5050.Order;
|
||||
|
||||
public enum CorridorRefPoint
|
||||
{
|
||||
KINEMATICCENTER,
|
||||
CONTOUR
|
||||
}
|
||||
|
||||
public class Corridor
|
||||
{
|
||||
[Required]
|
||||
public double LeftWidth { get; set; }
|
||||
[Required]
|
||||
public double RightWidth { get; set; }
|
||||
public string CorridorRefPoint { get; set; } = "";
|
||||
}
|
||||
Reference in New Issue
Block a user