Добавьте файлы проекта.
This commit is contained in:
13
SQLVision.Core/Interfaces/IPluginContext.cs
Normal file
13
SQLVision.Core/Interfaces/IPluginContext.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using SQLVision.Core.Enums;
|
||||
|
||||
namespace SQLVision.Core.Interfaces;
|
||||
|
||||
public interface IPluginContext
|
||||
{
|
||||
IServiceProvider ServiceProvider { get; }
|
||||
IConfiguration Configuration { get; }
|
||||
ILogger Logger { get; }
|
||||
Task ShowNotificationAsync(string message, NotificationType type);
|
||||
}
|
||||
Reference in New Issue
Block a user