namespace RobotNet10.MapEditor.Shared.DTOs.Requests;
///
/// Request to merge multiple nodes into one
///
public class MergeNodesRequest
{
public Guid LevelId { get; set; }
///
/// List of node IDs to merge
///
public List NodeIds { get; set; } = new();
///
/// Optional: Specify center position for merged node
/// If not provided, will calculate center from nodes
///
public double? CenterX { get; set; }
///
/// Optional: Specify center position for merged node
/// If not provided, will calculate center from nodes
///
public double? CenterY { get; set; }
}