erp-platform/api/modules/Erp.Settings/Erp.Settings.Application/SettingsAutoMapperProfile.cs

14 lines
256 B
C#
Raw Normal View History

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