using System; namespace Artemis.Core { /// /// Provides data about plugin feature related events /// public class PluginFeatureEventArgs : EventArgs { internal PluginFeatureEventArgs(PluginFeature pluginFeature) { PluginFeature = pluginFeature; } /// /// Gets the plugin feature this event is related to /// public PluginFeature PluginFeature { get; } } /// /// Provides data about plugin feature info related events /// public class PluginFeatureInfoEventArgs : EventArgs { internal PluginFeatureInfoEventArgs(PluginFeatureInfo pluginFeatureInfo) { PluginFeatureInfo = pluginFeatureInfo; } /// /// Gets the plugin feature this event is related to /// public PluginFeatureInfo PluginFeatureInfo { get; } } }