mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 08:42:47 +01:00
15 lines
382 B
C#
15 lines
382 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using TweetDuck.Plugins.Events;
|
|
|
|
namespace TweetDuck.Plugins{
|
|
interface IPluginConfig{
|
|
IEnumerable<string> DisabledPlugins { get; }
|
|
|
|
event EventHandler<PluginChangedStateEventArgs> PluginChangedState;
|
|
|
|
void SetEnabled(Plugin plugin, bool enabled);
|
|
bool IsEnabled(Plugin plugin);
|
|
}
|
|
}
|