mirror of
https://github.com/theitaliandeveloper/Perfect11.git
synced 2025-12-06 09:02:03 +00:00
More changes
This commit is contained in:
@@ -3,18 +3,23 @@
|
||||
public interface IPlugin
|
||||
{
|
||||
/// <summary>
|
||||
/// The display name of the plugin.
|
||||
/// The display name of the tweak.
|
||||
/// </summary>
|
||||
string Name { get; }
|
||||
|
||||
/// <summary>
|
||||
/// A short description of what the plugin does.
|
||||
/// A short description of what the tweak does.
|
||||
/// </summary>
|
||||
string Description { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The category of the tweak
|
||||
/// </summary>
|
||||
string Category { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Executes the plugin’s main logic.
|
||||
/// </summary>
|
||||
void Execute();
|
||||
string Execute();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user