Добавьте файлы проекта.

This commit is contained in:
FrigaT
2026-01-05 00:29:19 +03:00
committed by FrigaT
parent 76a09d80d4
commit d0653c2098
105 changed files with 6729 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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();
}