Separated LayoutDto from LayoutsController.cs into LayoutDto.cs and set its namespace to DbFirst.Application.Layouts for better code organization and maintainability.
9 lines
302 B
C#
9 lines
302 B
C#
namespace DbFirst.Application.Layouts;
|
|
|
|
public class LayoutDto
|
|
{
|
|
public string LayoutType { get; set; } = string.Empty;
|
|
public string LayoutKey { get; set; } = string.Empty;
|
|
public string UserName { get; set; } = string.Empty;
|
|
public string LayoutData { get; set; } = string.Empty;
|
|
} |