1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-04-28 09:15:46 +02:00
TweetDuck/lib/TweetLib.Core/Systems/Configuration/IConfigManager.cs

7 lines
216 B
C#

namespace TweetLib.Core.Systems.Configuration{
public interface IConfigManager{
void TriggerProgramRestartRequested();
IConfigInstance<BaseConfig> GetInstanceInfo(BaseConfig instance);
}
}