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

13 lines
333 B
C#

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