user mgmt done
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-05-19 19:39:46 +02:00
parent 634488c2d8
commit 0b01340e88
6 changed files with 68 additions and 10 deletions

View File

@ -0,0 +1,14 @@
using AutoMapper;
using HanyadikHetVan.Data.Entities;
using HanyadikHetVan.DTO;
namespace HanyadikHetVan.Profiles
{
public class UserProfile : Profile
{
public UserProfile()
{
CreateMap<User, UserDTO>();
}
}
}