12 lines
257 B
C#
12 lines
257 B
C#
using AutoMapper;
|
|
using Kurs.Settings.Entities;
|
|
|
|
namespace Kurs.Settings;
|
|
|
|
public class SettingsAutoMapperProfile : Profile
|
|
{
|
|
public SettingsAutoMapperProfile()
|
|
{
|
|
CreateMap<SettingDefinition, SettingDefinitionDto>().ReverseMap();
|
|
}
|
|
}
|