15 lines
348 B
C#
15 lines
348 B
C#
using AutoMapper;
|
|
using Chatbot.Api.Application.Queries;
|
|
using Chatbot.Api.Domain.Entities;
|
|
|
|
namespace Chatbot.Api.Application.Mappings
|
|
{
|
|
public class MappingProfile : Profile
|
|
{
|
|
public MappingProfile()
|
|
{
|
|
CreateMap<Bot, GetBots.Model>();
|
|
CreateMap<BotSession, GetSession.Model>();
|
|
}
|
|
}
|
|
} |