mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-28 09:15:46 +02:00
7 lines
216 B
C#
7 lines
216 B
C#
namespace TweetLib.Core.Systems.Configuration{
|
|
public interface IConfigManager{
|
|
void TriggerProgramRestartRequested();
|
|
IConfigInstance<BaseConfig> GetInstanceInfo(BaseConfig instance);
|
|
}
|
|
}
|