using System.Collections.Generic;
namespace PTConverter.Plugin
{
///
/// Describes an Plugin
///
public interface IPlugin
{
///
/// Author of the plugin
///
string Author { get; }
///
/// Company of the Plugin
///
string Company { get; }
///
/// Name of the Plugin
///
string PluginName { get; }
///
/// Description of the Plugin
///
string Description { get; }
///
/// The Version of the Plugin
///
string Version { get; }
///
/// The Icon(Link) of the Plugin
///
string IconLink { get; }
///
/// Registers all pages
///
IEnumerable RegisterPages {get;}
}
}