using RobotNet10.MapEditor.Shared.DTOs.Edge;
namespace RobotNet10.MapEditor.Shared.DTOs.Requests;
///
/// Request to update an existing edge
///
public class UpdateEdgeRequest
{
public string? EdgeName { get; set; }
public string? EdgeDescription { get; set; }
///
/// Updated vehicle properties (replaces existing)
///
public List? VehicleProperties { get; set; }
}