using AutoMapper; using UserManagement.Data; using UserManagement.Data.Dto; using UserManagement.MediatR.Commands; namespace UserManagement.API.Helpers.Mapping { public class PageActionProfile : Profile { public PageActionProfile() { CreateMap().ReverseMap(); CreateMap().ReverseMap(); } } }