using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Components.SaveToPdfHelpers { public class PdfDocumentData { public string FileName { get; set; } public string DocumentTitle { get; set; } public List Tables { get; set; } public PdfDocumentData(string fileName, string documentTitle, List tables) { FileName = fileName ?? throw new ArgumentNullException(nameof(fileName)); DocumentTitle = documentTitle ?? throw new ArgumentNullException(nameof(documentTitle)); Tables = tables ?? throw new ArgumentNullException(nameof(tables)); } } }