19 lines
359 B
C#
19 lines
359 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace RobotNet.RobotShares.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; } = "";
|
|
}
|