mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-08-17 00:31:42 +02:00
.github
.idea
bld
lib
TweetLib.Browser
TweetLib.Browser.CEF
TweetLib.Communication
TweetLib.Core
Application
Features
Notifications
Plugins
Config
Enums
Events
PluginChangedStateEventArgs.cs
PluginErrorEventArgs.cs
Plugin.cs
PluginBridge.cs
PluginLoader.cs
PluginManager.cs
PluginSchemeHandler.cs
PluginScriptGenerator.cs
TweetDeck
Twitter
BaseBrowser.cs
BaseContextMenu.cs
BaseResourceRequestHandler.cs
CommonBridgeObject.cs
FileDownloadManager.cs
ICommonInterface.cs
PropertyObjectScript.cs
Resources
Systems
App.cs
Lib.cs
TweetLib.Core.csproj
TweetLib.Utils
TweetTest.Browser.CEF
TweetTest.Core
TweetTest.Utils
linux
resources
windows
.gitattributes
.gitignore
LICENSE.md
README.md
TweetDuck.sln
TweetDuck.sln.DotSettings
Version.cs
global.json
14 lines
334 B
C#
14 lines
334 B
C#
using System;
|
|
|
|
namespace TweetLib.Core.Features.Plugins.Events {
|
|
internal sealed class PluginChangedStateEventArgs : EventArgs {
|
|
public Plugin Plugin { get; }
|
|
public bool IsEnabled { get; }
|
|
|
|
public PluginChangedStateEventArgs(Plugin plugin, bool isEnabled) {
|
|
this.Plugin = plugin;
|
|
this.IsEnabled = isEnabled;
|
|
}
|
|
}
|
|
}
|