1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-17 09:42:45 +02:00
TweetDuck/lib/TweetLib.Core/Features/Plugins/Events/PluginChangedStateEventArgs.cs
2022-02-05 23:34:00 +01:00

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