Initial commit
This commit is contained in:
@@ -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 merge nodes operation
|
||||
/// </summary>
|
||||
public class MergeNodesResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// The newly created merged node
|
||||
/// </summary>
|
||||
public NodeDto MergedNode { get; set; } = null!;
|
||||
|
||||
/// <summary>
|
||||
/// List of edges that were updated (StartNodeId or EndNodeId changed)
|
||||
/// </summary>
|
||||
public List<EdgeDto> UpdatedEdges { get; set; } = new();
|
||||
|
||||
/// <summary>
|
||||
/// List of node IDs that were deleted (original nodes)
|
||||
/// </summary>
|
||||
public List<Guid> DeletedNodeIds { get; set; } = new();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user