namespace COP.Info { public class ExcelTableInfo where T: class { public string FilePath { get; set; } = string.Empty; public string DocumentTitle { get; set; } = string.Empty; public List? Data; public Dictionary, List), List)> Headers { get; set; } public ExcelTableInfo (string filePath, string documentTitle, List data, Dictionary, List), List)> headers) { FilePath = filePath; DocumentTitle = documentTitle; Data = data; Headers = headers; } } }