Files
API/TOOHUCardAPI/Data/AutomapProfile.cs
2021-10-28 17:03:15 -04:00

15 lines
315 B
C#

using AutoMapper;
using TOOHUCardAPI.Data.Models;
using TOOHUCardAPI.DTO;
namespace TOOHUCardAPI.Data
{
public class AutomapProfile : Profile
{
public AutomapProfile()
{
CreateMap<User, PlayerDataGetResponseObjectPlayer>();
CreateMap<User, User>();
}
}
}