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