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:
tekh 2025-11-27 09:16:42 +01:00
parent 3e9edcd8af
commit 5e4f113145
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
using AutoMapper;
using ReC.Domain.Entities;
namespace ReC.Application.Dto;
namespace ReC.Application.Common.Dto;
public class DtoMappingProfile : Profile
{

View File

@ -1,4 +1,4 @@
namespace ReC.Application.Dto;
namespace ReC.Application.Common.Dto;
public class RecActionDto
{

View File

@ -1,10 +1,10 @@
using MediatR;
using ReC.Application.Dto;
using DigitalData.Core.Abstraction.Application.Repository;
using ReC.Domain.Entities;
using AutoMapper;
using Microsoft.EntityFrameworkCore;
using DigitalData.Core.Exceptions;
using ReC.Application.Common.Dto;
namespace ReC.Application.RecActions.Queries;