using AutoMapper; using PuppeteerSharp; using BlackRock.Reporting.API.Core.Models; namespace BlackRock.Reporting.API.Profiles { public class Profiler : Profile { public Profiler() { CreateMap<OptionsForPdf, PdfOptions>(); } } }