You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213
  1. using AutoMapper;
  2. using PuppeteerSharp;
  3. using BlackRock.Reporting.API.Core.Models;
  4. namespace BlackRock.Reporting.API.Profiles
  5. {
  6. public class Profiler : Profile
  7. {
  8. public Profiler()
  9. {
  10. CreateMap<OptionsForPdf, PdfOptions>();
  11. }
  12. }
  13. }