using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GreenTree.Nachtragsmanagement.Core.Plugins
{
///
/// Interface denoting plug-in attributes that are displayed throughout
/// the editing interface.
///
public interface IPlugin
{
///
/// Gets or sets the plugin descriptor
///
PluginDescriptor PluginDescriptor { get; set; }
///
/// Install plugin
///
void Install();
///
/// Uninstall plugin
///
void Uninstall();
}
}