using AutoMapper; using Sozsoft.Settings.Entities; namespace Sozsoft.Settings; public class SettingsAutoMapperProfile : Profile { public SettingsAutoMapperProfile() { CreateMap().ReverseMap(); } }