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