31 lines
847 B
C#
31 lines
847 B
C#
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; }
|
|
}
|
|
|