mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-16 17:34:08 +02:00
10 lines
199 B
C#
10 lines
199 B
C#
namespace TweetLib.Core.Features.Configuration{
|
|
public interface IConfigInstance<out T>{
|
|
T Instance { get; }
|
|
|
|
void Save();
|
|
void Reload();
|
|
void Reset();
|
|
}
|
|
}
|