1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-15 23:34:07 +02:00
TweetDuck/lib/TweetLib.Core/Features/Configuration/IConfigManager.cs

7 lines
217 B
C#

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