mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-20 11:34:08 +02:00
14 lines
377 B
C#
14 lines
377 B
C#
using System;
|
|
|
|
namespace TweetLib.Core.Features.Plugins.Events{
|
|
public sealed class PluginChangedStateEventArgs : EventArgs{
|
|
public Plugin Plugin { get; }
|
|
public bool IsEnabled { get; }
|
|
|
|
public PluginChangedStateEventArgs(Plugin plugin, bool isEnabled){
|
|
this.Plugin = plugin;
|
|
this.IsEnabled = isEnabled;
|
|
}
|
|
}
|
|
}
|