13 lines
333 B
C#
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; }
|
|
}
|
|
|