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