12 lines
224 B
C#
12 lines
224 B
C#
|
|
namespace DiunaBI.Core.Interfaces;
|
||
|
|
|
||
|
|
public interface IPlugin
|
||
|
|
{
|
||
|
|
string Name { get; }
|
||
|
|
string Version { get; }
|
||
|
|
string Author { get; }
|
||
|
|
string Description { get; }
|
||
|
|
|
||
|
|
void Initialize();
|
||
|
|
void Dispose();
|
||
|
|
}
|