Flow.Launcher/Flow.Launcher.Plugin/Interfaces/ISavable.cs

11 lines
256 B
C#

namespace Flow.Launcher.Plugin
{
/// <summary>
/// Save plugin settings/cache,
/// todo should be merged into a abstract class intead of seperate interface
/// </summary>
public interface ISavable
{
void Save();
}
}