using AutoMapper; using EnvelopeGenerator.Application.Annotations.Commands; using EnvelopeGenerator.Domain.Entities; namespace EnvelopeGenerator.Application.Annotations; /// /// /// public class MappingProfile : Profile { /// /// /// public MappingProfile() { CreateMap() .ForMember(dest => dest.AddedWhen, opt => opt.MapFrom(_ => DateTime.UtcNow)); } }