mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-01-15 14:42:46 +01:00
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;
|
|
}
|
|
}
|
|
}
|