25 lines
578 B
C#
25 lines
578 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace VisualComponentsLib.Components.SupportClasses
|
|
{
|
|
public class SimpleTable
|
|
{
|
|
public string FilePath = string.Empty;
|
|
|
|
public string TableName = string.Empty;
|
|
|
|
public List<string[,]> DataList = new();
|
|
|
|
public SimpleTable(string filePath, string tableName, List<string[,]> dataList)
|
|
{
|
|
FilePath = filePath;
|
|
TableName = tableName;
|
|
DataList = dataList;
|
|
}
|
|
}
|
|
}
|