Standardized namespaces for DTO classes and redefined several records to include necessary properties. Removed mapping configurations from MappingProfile, indicating a potential refactor. Introduced ProfileObjStateDto with a States property and ensured ProfileControlsTFDto and StateDto are properly encapsulated.
10 lines
369 B
C#
10 lines
369 B
C#
namespace WorkFlow.Application.Dto
|
|
{
|
|
public record ConfigDto(int Id,
|
|
string Title,
|
|
string String,
|
|
string AddedWho,
|
|
DateTime AddedWhen,
|
|
string? ChangedWho = null,
|
|
DateTime? ChangedWhen = null);
|
|
} |