mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-21 06:15:47 +02:00
12 lines
231 B
C#
12 lines
231 B
C#
using System;
|
|
|
|
namespace TweetDuck.Plugins.Events{
|
|
class PluginEventArgs : EventArgs{
|
|
public Plugin Plugin { get; }
|
|
|
|
public PluginEventArgs(Plugin plugin){
|
|
this.Plugin = plugin;
|
|
}
|
|
}
|
|
}
|