namespace ComponentsLibrary { public class DocumentTable { public string DocumentTitle { get; set; } = string.Empty; public string DocumentPath { get; set; } = string.Empty; public List MergedColumns { get; set; } public List ColumnWidths { get; set; } public List Headers { get; set; } public List Data { get; set; } public List PropertyMappings { get; set; } public DocumentTable(string documentTitle, string documentPath, List mergedColumns, List columnWidths, List headers, List data, List propertyMappings) { DocumentTitle = documentTitle; DocumentPath = documentPath; MergedColumns = mergedColumns; ColumnWidths = columnWidths; Headers = headers; Data = data; PropertyMappings = propertyMappings; } } }