DB added and more

This commit is contained in:
2021-10-28 17:03:15 -04:00
parent b56ca46363
commit 28fbc4598e
20 changed files with 453 additions and 21 deletions

View File

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