diff --git a/EnvelopeGenerator.Application/EmailTemplates/MappingProfile.cs b/EnvelopeGenerator.Application/EmailTemplates/MappingProfile.cs new file mode 100644 index 00000000..e6cba17d --- /dev/null +++ b/EnvelopeGenerator.Application/EmailTemplates/MappingProfile.cs @@ -0,0 +1,24 @@ +using AutoMapper; +using EnvelopeGenerator.Application.Common.Dto; +using EnvelopeGenerator.Application.EmailTemplates.Commands; +using EnvelopeGenerator.Domain.Entities; + +namespace EnvelopeGenerator.Application.EmailTemplates; + +/// +/// +/// +public class MappingProfile : Profile +{ + /// + /// + /// + public MappingProfile() + { + CreateMap(); + + CreateMap() + .ForMember(dest => dest.Id, opt => opt.Ignore()) + .ForMember(dest => dest.ChangedWhen, opt => opt.MapFrom(_ => DateTime.Now)); + } +} \ No newline at end of file