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 DataList = new(); public SimpleTable(string filePath, string tableHeader, List dataList) { FilePath = filePath; TableHeader = tableHeader; DataList = dataList; } } }