using RobotNet10.MapEditor.Shared.DTOs.Edge; using RobotNet10.MapEditor.Shared.DTOs.Node; using RobotNet10.MapEditor.Shared.DTOs.Station; namespace RobotNet10.MapEditor.Shared.DTOs.LayoutData; /// /// Complete layout data for a single layout level /// Includes nodes, edges, and stations with all nested properties /// public class LayoutDataDto { public Guid LayoutLevelId { get; set; } public List Nodes { get; set; } = new(); public List Edges { get; set; } = new(); public List Stations { get; set; } = new(); }