namespace SQLVision.Core.Models; public class ExportOptions { public string Format { get; set; } = "Excel"; public bool IncludeHeaders { get; set; } = true; public bool AutoFilter { get; set; } = true; public bool IncludeCharts { get; set; } = false; public string? ChartType { get; set; } public bool OpenAfterExport { get; set; } = false; public Dictionary CustomOptions { get; set; } = new(); }