using COP_1.cop_2.helpers.enums; namespace COP_1.cop_2.helpers { public class SimpleLineChart { public string FilePath = string.Empty; public string FileHeader = string.Empty; public string LineChartName = string.Empty; public EnumAreaLegend AreaLegend; public List DataList = new(); public SimpleLineChart(string filePath, string fileHeader, string lineChartName, EnumAreaLegend areaLegend, List dataList) { FilePath = filePath; FileHeader = fileHeader; LineChartName = lineChartName; AreaLegend = areaLegend; DataList = dataList; } } }