using System; namespace Artemis.Core; /// /// Provides data about plugin related events /// public class PluginEventArgs : EventArgs { internal PluginEventArgs(Plugin plugin) { Plugin = plugin; } /// /// Gets the plugin this event is related to /// public Plugin Plugin { get; } }