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