Files
YABA/YABA.Service/Configuration/AutoMapperProfile.cs
2023-01-26 18:56:22 -06:00

15 lines
258 B
C#

using AutoMapper;
using YABA.Common.DTOs;
using YABA.Models;
namespace YABA.Service.Configuration
{
public class AutoMapperProfile : Profile
{
public AutoMapperProfile()
{
CreateMap<User, UserDTO>();
}
}
}