23 lines
475 B
C#
23 lines
475 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KOP_Labs.Classes
|
|
{
|
|
public class MyTable
|
|
{
|
|
public string _filePath = string.Empty;
|
|
|
|
public string _fileHeader = string.Empty;
|
|
public List<string[,]> _dataList = new();
|
|
public MyTable(string filePath, string fileHeader, List<string[,]> dataList) {
|
|
_filePath = filePath;
|
|
_fileHeader = fileHeader;
|
|
_dataList = dataList;
|
|
}
|
|
|
|
}
|
|
}
|