hanyadikhetvan-dotnethf/HanyadikHetVan/Profiles/UserProfile.cs
Torma Kristóf 0b01340e88
All checks were successful
continuous-integration/drone/push Build is passing
user mgmt done
2021-05-19 19:39:46 +02:00

15 lines
262 B
C#

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