Initial commit
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user