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