namespace RobotNet10.MapEditor.Shared.DTOs.Edge; /// /// Load restriction data transfer object for VDMA LIF /// Maps to: edge.vehicleTypeEdgeProperties[].loadRestriction /// public class LoadRestrictionDto { /// /// Indicates if the edge can be traversed without a load /// public bool? Unloaded { get; set; } /// /// Indicates if the edge can be traversed with a load /// public bool? Loaded { get; set; } /// /// Names of the load sets allowed on this edge (optional) /// public List? LoadSetNames { get; set; } }