mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-15 05:34:10 +02:00
16 lines
482 B
C#
16 lines
482 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);
|
|
}
|
|
}
|