namespace RobotNet10.MapEditor.Shared.DTOs.Requests; /// /// Request to create a new layout version /// public class CreateLayoutVersionRequest { public string Version { get; set; } = string.Empty; public string? LayoutDescription { get; set; } public string? CreatedBy { get; set; } }