using RobotNet10.MapEditor.Shared.Models; namespace RobotNet10.MapEditor.Shared.DTOs.Requests; /// /// Request to update a layout level /// public class UpdateLayoutLevelRequest { public string? LayoutLevelId { get; set; } public int? LevelOrder { get; set; } /// /// Optional coordinate system configuration update /// public CoordinateSystemInfo? CoordinateSystem { get; set; } /// /// Optional editor settings configuration update /// public EditorSettingsInfo? EditorSettings { get; set; } }