mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-28 00:15:47 +02:00
16 lines
440 B
C#
16 lines
440 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using TweetLib.Core.Features.Plugins.Events;
|
|
|
|
namespace TweetLib.Core.Features.Plugins.Config {
|
|
public interface IPluginConfig {
|
|
event EventHandler<PluginChangedStateEventArgs> PluginChangedState;
|
|
|
|
IEnumerable<string> DisabledPlugins { get; }
|
|
void Reset(IEnumerable<string> newDisabledPlugins);
|
|
|
|
void SetEnabled(Plugin plugin, bool enabled);
|
|
bool IsEnabled(Plugin plugin);
|
|
}
|
|
}
|