Disambiguate Profile mapping in AutoMapper configuration

Updated the mapping configuration in `DtoMappingProfile` to use
the fully qualified name `Domain.Entities.Profile` for the
`Profile` entity. This change resolves potential ambiguity with
other classes named `Profile` in the codebase.
This commit is contained in:
Developer 02
2026-01-15 23:54:28 +01:00
parent dd9c1c7ca2
commit 1df9235036

View File

@@ -15,7 +15,7 @@ public class DtoMappingProfile : AutoMapper.Profile
CreateMap<EndpointAuth, EndpointAuthDto>();
CreateMap<Endpoint, EndpointDto>();
CreateMap<EndpointParam, EndpointParamDto>();
CreateMap<Profile, ProfileDto>();
CreateMap<Domain.Entities.Profile, ProfileDto>();
CreateMap<RecAction, RecActionDto>();
CreateMap<ResultView, ResultViewDto>();