Files
I150/srcs/RobotNet10/Shared/RobotNet10.MapEditor.Shared/DTOs/Requests/UpdateLayoutRequest.cs
2026-07-03 16:37:12 +07:00

13 lines
322 B
C#

namespace RobotNet10.MapEditor.Shared.DTOs.Requests;
/// <summary>
/// Request to update an existing layout
/// </summary>
public class UpdateLayoutRequest
{
public string LayoutName { get; set; } = string.Empty;
public string? Description { get; set; }
public string? ModifiedBy { get; set; }
}