1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-16 17:34:08 +02:00
TweetDuck/lib/TweetLib.Core/Features/Configuration/IConfigInstance.cs

10 lines
199 B
C#

namespace TweetLib.Core.Features.Configuration{
public interface IConfigInstance<out T>{
T Instance { get; }
void Save();
void Reload();
void Reset();
}
}