Добавьте файлы проекта.
This commit is contained in:
12
SQLVision.Core/Enums/ChartType.cs
Normal file
12
SQLVision.Core/Enums/ChartType.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace SQLVision.Core.Enums;
|
||||
|
||||
public enum ChartType
|
||||
{
|
||||
Line,
|
||||
Bar,
|
||||
Pie,
|
||||
Area,
|
||||
Scatter,
|
||||
Heatmap,
|
||||
Candlestick
|
||||
}
|
||||
10
SQLVision.Core/Enums/DatabaseProvider.cs
Normal file
10
SQLVision.Core/Enums/DatabaseProvider.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace SQLVision.Core.Enums;
|
||||
|
||||
public enum DatabaseProvider
|
||||
{
|
||||
SqlServer, // Только MSSQL для начала
|
||||
// PostgreSQL,
|
||||
// MySQL,
|
||||
// SQLite,
|
||||
// Oracle
|
||||
}
|
||||
9
SQLVision.Core/Enums/NotificationType.cs
Normal file
9
SQLVision.Core/Enums/NotificationType.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace SQLVision.Core.Enums;
|
||||
|
||||
public enum NotificationType
|
||||
{
|
||||
Information,
|
||||
Success,
|
||||
Warning,
|
||||
Error
|
||||
}
|
||||
11
SQLVision.Core/Enums/OutputType.cs
Normal file
11
SQLVision.Core/Enums/OutputType.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace SQLVision.Core.Enums;
|
||||
|
||||
public enum OutputType
|
||||
{
|
||||
Table,
|
||||
Chart,
|
||||
Text,
|
||||
Grid,
|
||||
Map,
|
||||
Custom
|
||||
}
|
||||
15
SQLVision.Core/Enums/ParameterType.cs
Normal file
15
SQLVision.Core/Enums/ParameterType.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace SQLVision.Core.Enums;
|
||||
|
||||
public enum ParameterType
|
||||
{
|
||||
String,
|
||||
Integer,
|
||||
Decimal,
|
||||
DateTime,
|
||||
Boolean,
|
||||
Table, // Для ComboBox с данными из БД
|
||||
MultiSelect, // ListBox с множественным выбором
|
||||
Color,
|
||||
File,
|
||||
Json
|
||||
}
|
||||
9
SQLVision.Core/Enums/ScriptChangeType.cs
Normal file
9
SQLVision.Core/Enums/ScriptChangeType.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace SQLVision.Core.Enums;
|
||||
|
||||
public enum ScriptChangeType
|
||||
{
|
||||
Created,
|
||||
Updated,
|
||||
Deleted,
|
||||
Renamed
|
||||
}
|
||||
Reference in New Issue
Block a user