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