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