mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-14 08:42:46 +01:00
14 lines
375 B
C#
14 lines
375 B
C#
using System;
|
|
|
|
namespace TweetDck.Plugins.Events{
|
|
class PluginChangedStateEventArgs : EventArgs{
|
|
public Plugin Plugin { get; private set; }
|
|
public bool IsEnabled { get; private set; }
|
|
|
|
public PluginChangedStateEventArgs(Plugin plugin, bool isEnabled){
|
|
this.Plugin = plugin;
|
|
this.IsEnabled = isEnabled;
|
|
}
|
|
}
|
|
}
|