12 lines
445 B
C#
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();
|
|
} |