13 lines
323 B
C#
13 lines
323 B
C#
using AutoMapper;
|
|
using Suspectus.Gandalf.Palantir.Data.Dto;
|
|
using Suspectus.Gandalf.Palantir.Data.Entities.Security;
|
|
|
|
namespace Suspectus.Gandalf.Palantir.Data.Mapper;
|
|
|
|
public class AuthCodeDtoMappingProfile : Profile
|
|
{
|
|
public AuthCodeDtoMappingProfile()
|
|
{
|
|
CreateMap<AuthCodeEntity, AuthCodeDto>();
|
|
}
|
|
} |