1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-15 23:34:07 +02:00
TweetDuck/lib/TweetLib.Core/Features/Plugins/IPluginConfig.cs

15 lines
415 B
C#

using System;
using System.Collections.Generic;
using TweetLib.Core.Features.Plugins.Events;
namespace TweetLib.Core.Features.Plugins{
public interface IPluginConfig{
IEnumerable<string> DisabledPlugins { get; }
event EventHandler<PluginChangedStateEventArgs> PluginChangedState;
void SetEnabled(Plugin plugin, bool enabled);
bool IsEnabled(Plugin plugin);
}
}