Refactor namespaces for DTO classes

Updated `DtoMappingProfile` and `RecActionDto` to use the
`ReC.Application.Common.Dto` namespace instead of
`ReC.Application.Dto`. Adjusted `ReadRecActionQuery` to reflect
this namespace change. No functional changes were introduced.
This commit is contained in:
2025-11-27 09:16:42 +01:00
parent 3e9edcd8af
commit 5e4f113145
3 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
using AutoMapper;
using ReC.Domain.Entities;
namespace ReC.Application.Common.Dto;
public class DtoMappingProfile : Profile
{
public DtoMappingProfile()
{
CreateMap<RecAction, RecActionDto>();
}
}