14 lines
278 B
C#
14 lines
278 B
C#
using AutoMapper;
|
|
using TOOHUCardAPI.Data.Models;
|
|
using TOOHUCardAPI.DTO;
|
|
|
|
namespace TOOHUCardAPI.Data
|
|
{
|
|
public class AutomapProfile : Profile
|
|
{
|
|
public AutomapProfile()
|
|
{
|
|
CreateMap<User, PlayerDataGetResponseObjectPlayer>();
|
|
}
|
|
}
|
|
} |