erp-platform/api/src/Kurs.Platform.Application/AiBots/AiBotAutoMapperProfile.cs
Sedat ÖZTÜRK 8cc8ed07f9 Düzenleme
2025-08-11 09:34:44 +03:00

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();
}
}