using System; using System.Collections.Generic; using System.Data; using System.Text; namespace ReZero.Excel { /// /// Represents the Excel data. /// public class ExcelData { /// /// Gets or sets the description of the table. /// public string? TableDescrpition { get; set; } /// /// Gets or sets the DataTable. /// public DataTable? DataTable { get; set; } } }