mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
18 lines
313 B
C#
18 lines
313 B
C#
using System;
|
|
|
|
namespace Artemis.Core
|
|
{
|
|
public class PluginEventArgs : EventArgs
|
|
{
|
|
public PluginEventArgs()
|
|
{
|
|
}
|
|
|
|
public PluginEventArgs(PluginInfo pluginInfo)
|
|
{
|
|
PluginInfo = pluginInfo;
|
|
}
|
|
|
|
public PluginInfo PluginInfo { get; }
|
|
}
|
|
} |