mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
19 lines
372 B
C#
19 lines
372 B
C#
using System;
|
|
|
|
namespace Artemis.Core;
|
|
|
|
/// <summary>
|
|
/// Provides data about plugin related events
|
|
/// </summary>
|
|
public class PluginEventArgs : EventArgs
|
|
{
|
|
internal PluginEventArgs(Plugin plugin)
|
|
{
|
|
Plugin = plugin;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the plugin this event is related to
|
|
/// </summary>
|
|
public Plugin Plugin { get; }
|
|
} |