after refactor cleanup
This commit is contained in:
12
DiunaBI.Infrastructure/Interfaces/IPlugin.cs
Normal file
12
DiunaBI.Infrastructure/Interfaces/IPlugin.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace DiunaBI.Infrastructure.Interfaces;
|
||||
|
||||
public interface IPlugin
|
||||
{
|
||||
string Name { get; }
|
||||
string Version { get; }
|
||||
string Author { get; }
|
||||
string Description { get; }
|
||||
|
||||
void Initialize();
|
||||
void Dispose();
|
||||
}
|
||||
Reference in New Issue
Block a user