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