12 lines
273 B
C#
12 lines
273 B
C#
using AutoMapper;
|
|
using RecNet.Application.Profiles;
|
|
|
|
namespace RecNet.Application.Common.Mapping;
|
|
|
|
public class ApplicationMappingProfile : Profile
|
|
{
|
|
public ApplicationMappingProfile()
|
|
{
|
|
CreateMap<Domain.Entities.Profiles.Profile, ProfileDTO>();
|
|
}
|
|
} |