sozsoft-platform/api/modules/Sozsoft.Settings/Sozsoft.Settings.Application/SettingsAutoMapperProfile.cs

14 lines
264 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using AutoMapper;
using Sozsoft.Settings.Entities;
namespace Sozsoft.Settings;
public class SettingsAutoMapperProfile : Profile
{
public SettingsAutoMapperProfile()
{
CreateMap<SettingDefinition, SettingDefinitionDto>().ReverseMap();
}
}