using EnvelopeGenerator.Application.Common.Configurations;
using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EnvelopeGenerator.Application.Pdf;
///
///
///
public class BurnPdfCommand : IRequest
{
}
///
///
///
public class BurnPdfCommandHandler : IRequestHandler
{
///
///
///
private readonly PDFBurnerParams _pdfBurnerParams;
///
///
///
///
///
///
///
public Task Handle(BurnPdfCommand request, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}