2025-05-06 06:45:49 +00:00
|
|
|
|
using AutoMapper;
|
2025-08-11 06:34:44 +00:00
|
|
|
|
using Kurs.Platform.AiBots;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
using Kurs.Platform.Entities;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Kurs.Platform.DataSources;
|
|
|
|
|
|
|
|
|
|
|
|
public class AiBotAutoMapperProfile : Profile
|
|
|
|
|
|
{
|
|
|
|
|
|
public AiBotAutoMapperProfile()
|
|
|
|
|
|
{
|
|
|
|
|
|
CreateMap<AiBot, AiBotDto>().ReverseMap();
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|