23 lines
664 B
C#
23 lines
664 B
C#
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<string[,]> Tables { get; set; }
|
|
|
|
public PdfDocumentData(string fileName, string documentTitle, List<string[,]> tables)
|
|
{
|
|
FileName = fileName ?? throw new ArgumentNullException(nameof(fileName));
|
|
DocumentTitle = documentTitle ?? throw new ArgumentNullException(nameof(documentTitle));
|
|
Tables = tables ?? throw new ArgumentNullException(nameof(tables));
|
|
}
|
|
}
|
|
}
|