mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
10 lines
188 B
C#
10 lines
188 B
C#
namespace TweetDuck.Configuration.Instance{
|
|
interface IConfigInstance<out T>{
|
|
T Instance { get; }
|
|
|
|
void Save();
|
|
void Reload();
|
|
void Reset();
|
|
}
|
|
}
|