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,27 @@
using RobotNet10.MapEditor.Shared.DTOs.Node;
using RobotNet10.MapEditor.Shared.DTOs.Edge;
namespace RobotNet10.MapEditor.Shared.DTOs.Responses;
/// <summary>
/// Response from split node operation
/// </summary>
public class SplitNodeResponse
{
/// <summary>
/// List of newly created nodes (one for each connected edge)
/// </summary>
public List<NodeDto> NewNodes { get; set; } = new();
/// <summary>
/// List of edges that were updated (StartNodeId or EndNodeId changed)
/// </summary>
public List<EdgeDto> UpdatedEdges { get; set; } = new();
/// <summary>
/// ID of the original node that was split (now deleted)
/// </summary>
public Guid DeletedNodeId { get; set; }
}