mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
36 lines
990 B
C#
36 lines
990 B
C#
using System;
|
|
|
|
namespace Artemis.Core
|
|
{
|
|
/// <summary>
|
|
/// Provides data about plugin feature related events
|
|
/// </summary>
|
|
public class PluginFeatureEventArgs : EventArgs
|
|
{
|
|
internal PluginFeatureEventArgs(PluginFeature pluginFeature)
|
|
{
|
|
PluginFeature = pluginFeature;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the plugin feature this event is related to
|
|
/// </summary>
|
|
public PluginFeature PluginFeature { get; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Provides data about plugin feature info related events
|
|
/// </summary>
|
|
public class PluginFeatureInfoEventArgs : EventArgs
|
|
{
|
|
internal PluginFeatureInfoEventArgs(PluginFeatureInfo pluginFeatureInfo)
|
|
{
|
|
PluginFeatureInfo = pluginFeatureInfo;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the plugin feature this event is related to
|
|
/// </summary>
|
|
public PluginFeatureInfo PluginFeatureInfo { get; }
|
|
}
|
|
} |