Initial commit

This commit is contained in:
2026-07-03 16:31:37 +07:00
commit 899c7c637d
1939 changed files with 641750 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
namespace RobotNet10.MapEditor.Shared.DTOs.Node;
/// <summary>
/// Node data transfer object with full details including vehicle properties
/// </summary>
public class NodeDto
{
public Guid Id { get; set; }
public Guid LevelId { get; set; }
public string NodeId { get; set; } = string.Empty;
public string? NodeName { get; set; }
public string? NodeDescription { get; set; }
public string? MapId { get; set; }
/// <summary>
/// X coordinate in METERS
/// </summary>
public double X { get; set; }
/// <summary>
/// Y coordinate in METERS
/// </summary>
public double Y { get; set; }
/// <summary>
/// Vehicle-specific properties for this node
/// </summary>
public List<NodeVehiclePropertyDto>? VehicleProperties { get; set; }
}