Files
BQP/srcs/RobotNet10/Shared/RobotNet10.MapEditor.Shared/DTOs/Station/StationDto.cs
2026-07-13 09:25:40 +07:00

36 lines
1007 B
C#

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