15 lines
265 B
C#
15 lines
265 B
C#
using AutoMapper;
|
|
using YABA.API.ViewModels;
|
|
using YABA.Common.DTOs;
|
|
|
|
namespace YABA.API.Settings
|
|
{
|
|
public class AutoMapperProfile : Profile
|
|
{
|
|
public AutoMapperProfile()
|
|
{
|
|
CreateMap<UserDTO, UserResponse>();
|
|
}
|
|
}
|
|
}
|