18 lines
389 B
C#
18 lines
389 B
C#
namespace Ink_Canvas.Plugins
|
|
{
|
|
public interface IPlugin
|
|
{
|
|
string Id { get; }
|
|
string Name { get; }
|
|
string Version { get; }
|
|
string Description { get; }
|
|
string Author { get; }
|
|
int Order { get; }
|
|
|
|
void Initialize(IPluginHost host);
|
|
void Shutdown();
|
|
object GetMainView();
|
|
object GetSettingsView();
|
|
}
|
|
}
|