您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Profiler.cs 275B

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. }