25 lines
586 B
C#
Raw Normal View History

2023-10-06 00:47:23 +04:00
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;
2023-10-09 18:14:48 +04:00
public string TableHeader = string.Empty;
2023-10-06 00:47:23 +04:00
public List<string[,]> DataList = new();
2023-10-09 18:14:48 +04:00
public SimpleTable(string filePath, string tableHeader, List<string[,]> dataList)
2023-10-06 00:47:23 +04:00
{
FilePath = filePath;
2023-10-09 18:14:48 +04:00
TableHeader = tableHeader;
2023-10-06 00:47:23 +04:00
DataList = dataList;
}
}
}