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