Initial commit

This commit is contained in:
2026-07-03 16:37:12 +07:00
commit 63b8c1ea8b
1931 changed files with 640587 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
namespace RobotNet10.MapEditor.Shared.DTOs.Requests;
/// <summary>
/// Request to copy selected nodes and edges with an offset
/// </summary>
public class CopyNodesRequest
{
/// <summary>
/// Layout level ID
/// </summary>
public Guid LayoutLevelId { get; set; }
/// <summary>
/// List of node IDs to copy
/// </summary>
public List<Guid> NodeIds { get; set; } = new();
/// <summary>
/// List of edge IDs to copy (only edges where both nodes are in NodeIds will be copied)
/// </summary>
public List<Guid> EdgeIds { get; set; } = new();
/// <summary>
/// Offset X in world coordinates (meters)
/// </summary>
public double OffsetX { get; set; }
/// <summary>
/// Offset Y in world coordinates (meters)
/// </summary>
public double OffsetY { get; set; }
}