1
0
mirror of synced 2024-12-01 02:27:22 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Interfaces/IPlugin.cs

24 lines
519 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Toolbox.Library;
namespace PluginContracts
{
public interface IPlugin
{
string Name { get; }
string Author { get; }
string Description { get; }
string Version { get; }
//List of types
//IFileFormat
Type[] Types { get; } //Types hold File extensions
void Load();
void Unload();
}
}