You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
519 B

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