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

12 lines
256 B
C#
Raw Normal View History

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();
}
}