erp-platform/api/src/Kurs.Platform.Application/AiBot/AiBotAutoMapperProfile.cs

14 lines
240 B
C#
Raw Normal View History

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