2023-10-09 18:14:48 +04:00

25 lines
586 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 TableHeader = string.Empty;
public List<string[,]> DataList = new();
public SimpleTable(string filePath, string tableHeader, List<string[,]> dataList)
{
FilePath = filePath;
TableHeader = tableHeader;
DataList = dataList;
}
}
}