14 lines
268 B
C#
14 lines
268 B
C#
using AutoMapper;
|
|
using Kurs.Platform.AiBots;
|
|
using Kurs.Platform.Entities;
|
|
|
|
namespace Kurs.Platform.DataSources;
|
|
|
|
public class AiBotAutoMapperProfile : Profile
|
|
{
|
|
public AiBotAutoMapperProfile()
|
|
{
|
|
CreateMap<AiBot, AiBotDto>().ReverseMap();
|
|
|
|
}
|
|
}
|