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