13 lines
270 B
C#
13 lines
270 B
C#
|
|
using AutoMapper;
|
||
|
|
using Erp.Reports.ReportDefinitions;
|
||
|
|
|
||
|
|
namespace Erp.Reports;
|
||
|
|
|
||
|
|
public class ErpReportsApplicationAutoMapperProfile : Profile
|
||
|
|
{
|
||
|
|
public ErpReportsApplicationAutoMapperProfile()
|
||
|
|
{
|
||
|
|
CreateMap<ReportDefinition, ReportDefinitionDto>();
|
||
|
|
}
|
||
|
|
}
|