SimpleAssemblyExplorer.Plugin.IPlugin
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
namespace SimpleAssemblyExplorer.Plugin
{
public interface IPlugin
{
/// <summary>
/// Plugin information
/// </summary>
PluginInfo PluginInfo { get; }
/// <summary>
/// Plugin interface
/// </summary>
/// <param name="arg">Plugin argument</param>
/// <returns>to tell main form what to do after plugin returns</returns>
PluginReturns Run(PluginArgument arg);
}
}
|