1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/src/Artemis.Core/Events/Plugins/PluginEventArgs.cs
Robert 11de30318e Core - Added stores for the different register-able types
Profiles - Refactored large parts of the profile structure to use these stores
2020-09-09 19:56:06 +02:00

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; }
}
}