Добавьте файлы проекта.
This commit is contained in:
12
SQLVision.Core/Models/ExportOptions.cs
Normal file
12
SQLVision.Core/Models/ExportOptions.cs
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user