1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-17 09:42:45 +02:00
TweetDuck/lib/TweetLib.Core/Systems/Configuration/IConfigInstance.cs

7 lines
123 B
C#

namespace TweetLib.Core.Systems.Configuration {
public interface IConfigInstance {
void Save();
void Reset();
}
}