erp-platform/api/modules/Erp.Settings/Erp.Settings.Application/SettingsAutoMapperProfile.cs
2025-11-11 22:49:52 +03:00

13 lines
256 B
C#

using AutoMapper;
using Erp.Settings.Entities;
namespace Erp.Settings;
public class SettingsAutoMapperProfile : Profile
{
public SettingsAutoMapperProfile()
{
CreateMap<SettingDefinition, SettingDefinitionDto>().ReverseMap();
}
}