diff --git a/src/ReC.Application/OutResults/MappingProfiles.cs b/src/ReC.Application/OutResults/MappingProfiles.cs new file mode 100644 index 0000000..2f1e01e --- /dev/null +++ b/src/ReC.Application/OutResults/MappingProfiles.cs @@ -0,0 +1,13 @@ +using AutoMapper; +using ReC.Application.OutResults.Commands; +using ReC.Domain.Entities; + +namespace ReC.Application.OutResults; + +public class MappingProfiles : Profile +{ + public MappingProfiles() + { + CreateMap(); + } +} \ No newline at end of file