Refactored DTO classes by removing unnecessary using statements and internal wrappers, making them public, and adding explicit properties with default values. Clarified namespaces and improved accessibility for use in API contracts or service layers. Added CatalogUpdateProcedure to CatalogWriteDto to specify update operation type.
9 lines
300 B
C#
9 lines
300 B
C#
namespace DbFirst.Contracts.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;
|
|
} |