erp-platform/api/modules/Erp.Reports/Erp.Reports.Application/ErpReportsApplicationAutoMapperProfile.cs

13 lines
270 B
C#
Raw Normal View History

2026-01-06 11:33:39 +00:00
using AutoMapper;
using Erp.Reports.ReportDefinitions;
namespace Erp.Reports;
public class ErpReportsApplicationAutoMapperProfile : Profile
{
public ErpReportsApplicationAutoMapperProfile()
{
CreateMap<ReportDefinition, ReportDefinitionDto>();
}
}