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