Files
I150/srcs/RobotNet10/Shared/RobotNet10.MapEditor.Shared/DTOs/Node/NodeDto.cs
2026-07-03 16:37:12 +07:00

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; }
}