erp-platform/api/modules/Erp.Reports/Erp.Reports.Application/ErpReportsApplicationAutoMapperProfile.cs
2026-01-06 14:33:39 +03:00

12 lines
270 B
C#

using AutoMapper;
using Erp.Reports.ReportDefinitions;
namespace Erp.Reports;
public class ErpReportsApplicationAutoMapperProfile : Profile
{
public ErpReportsApplicationAutoMapperProfile()
{
CreateMap<ReportDefinition, ReportDefinitionDto>();
}
}