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,35 @@
namespace RobotNet10.MapEditor.Shared.DTOs.Station;
/// <summary>
/// Station data transfer object with full details including interaction nodes
/// </summary>
public class StationDto
{
public Guid Id { get; set; }
public Guid LevelId { get; set; }
public string StationId { get; set; } = string.Empty;
public string? StationName { get; set; }
public string? StationDescription { get; set; }
public double? StationHeight { 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>
/// Theta orientation in radians (optional)
/// </summary>
public double? Theta { get; set; }
/// <summary>
/// Interaction nodes linked to this station
/// </summary>
public List<StationInteractionNodeDto>? InteractionNodes { get; set; }
}