namespace RobotNet10.MapEditor.Shared.DTOs.Node;
///
/// Node data transfer object with full details including vehicle properties
///
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; }
///
/// X coordinate in METERS
///
public double X { get; set; }
///
/// Y coordinate in METERS
///
public double Y { get; set; }
///
/// Vehicle-specific properties for this node
///
public List? VehicleProperties { get; set; }
}