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

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.Enums;
public enum ChartType
{
Line,
Bar,
Pie,
Area,
Scatter,
Heatmap,
Candlestick
}

View File

@@ -0,0 +1,10 @@
namespace SQLVision.Core.Enums;
public enum DatabaseProvider
{
SqlServer, // Только MSSQL для начала
// PostgreSQL,
// MySQL,
// SQLite,
// Oracle
}

View File

@@ -0,0 +1,9 @@
namespace SQLVision.Core.Enums;
public enum NotificationType
{
Information,
Success,
Warning,
Error
}

View File

@@ -0,0 +1,11 @@
namespace SQLVision.Core.Enums;
public enum OutputType
{
Table,
Chart,
Text,
Grid,
Map,
Custom
}

View File

@@ -0,0 +1,15 @@
namespace SQLVision.Core.Enums;
public enum ParameterType
{
String,
Integer,
Decimal,
DateTime,
Boolean,
Table, // Для ComboBox с данными из БД
MultiSelect, // ListBox с множественным выбором
Color,
File,
Json
}

View File

@@ -0,0 +1,9 @@
namespace SQLVision.Core.Enums;
public enum ScriptChangeType
{
Created,
Updated,
Deleted,
Renamed
}