using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using VisualComponentsLib.Components.SupportClasses.Enums; namespace VisualComponentsLib.Components.SupportClasses { public class SimpleHistogram { public string FilePath = string.Empty; public string FileHeader = string.Empty; public string HistogramName = string.Empty; public EnumAreaLegend AreaLegend; public List DataList = new(); public SimpleHistogram(string filePath, string fileHeader, string histogramName, EnumAreaLegend areaLegend, List dataList) { FilePath = filePath; FileHeader = fileHeader; HistogramName = histogramName; AreaLegend = areaLegend; DataList = dataList; } } }