2025-05-06 06:45:49 +00:00
|
|
|
|
using AutoMapper;
|
2025-11-11 19:49:52 +00:00
|
|
|
|
using Erp.Settings.Entities;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Settings;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
|
|
|
|
|
public class SettingsAutoMapperProfile : Profile
|
|
|
|
|
|
{
|
|
|
|
|
|
public SettingsAutoMapperProfile()
|
|
|
|
|
|
{
|
|
|
|
|
|
CreateMap<SettingDefinition, SettingDefinitionDto>().ReverseMap();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|