Files
SQLVision/SQLVision.Core/Models/ExportOptions.cs
2026-01-05 00:37:54 +03:00

12 lines
445 B
C#

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<string, object> CustomOptions { get; set; } = new();
}