RobotNet/RobotNet.RobotShares/VDA5050/Order/Corridor.cs
2025-10-15 15:15:53 +07:00

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