namespace Flow.Launcher.Plugin
{
///
/// Inherit this interface if additional data e.g. cache needs to be saved.
///
///
/// For storing plugin settings, prefer
/// or .
/// Once called, your settings will be automatically saved by Flow.
///
public interface ISavable : IFeatures
{
///
/// Save additional plugin data, such as cache.
///
void Save();
}
}