using AutoMapper; using Kurs.Platform.Entities; namespace Kurs.Platform.DataSources; public class AiBotAutoMapperProfile : Profile { public AiBotAutoMapperProfile() { CreateMap().ReverseMap(); } }