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