using Microsoft.Office.Interop.Excel; namespace CustomComponents.MyNonVisualComponents { public class LineChartConfig { public string FilePath { get; set; } public string Header { get; set; } public string ChartTitle { get; set; } public Dictionary> Values { get; set; } public LegendPosition LegendPosition { get; set; } } }