namespace Perfect11.TweaksInterface
{
public interface IPlugin
{
///
/// The display name of the tweak.
///
string Name { get; }
///
/// A short description of what the tweak does.
///
string Description { get; }
///
/// The category of the tweak
///
string Category { get; }
///
/// Executes the plugin’s main logic.
///
string Execute();
}
}