mirror of
https://github.com/theitaliandeveloper/Perfect11.git
synced 2025-12-06 09:02:03 +00:00
21 lines
459 B
C#
21 lines
459 B
C#
namespace Perfect11.TweaksInterface
|
||
{
|
||
public interface IPlugin
|
||
{
|
||
/// <summary>
|
||
/// The display name of the plugin.
|
||
/// </summary>
|
||
string Name { get; }
|
||
|
||
/// <summary>
|
||
/// A short description of what the plugin does.
|
||
/// </summary>
|
||
string Description { get; }
|
||
|
||
/// <summary>
|
||
/// Executes the plugin’s main logic.
|
||
/// </summary>
|
||
void Execute();
|
||
}
|
||
}
|