15 lines
269 B
C#
15 lines
269 B
C#
using Apimanager_backend.Dtos;
|
|
using Apimanager_backend.Models;
|
|
using AutoMapper;
|
|
|
|
namespace Apimanager_backend.Config
|
|
{
|
|
public class MyAutomapper:Profile
|
|
{
|
|
public MyAutomapper()
|
|
{
|
|
CreateMap<User,UserInfoDto>();
|
|
}
|
|
}
|
|
}
|