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

13 lines
451 B
C#
Raw Permalink Normal View History

namespace Flow.Launcher.Plugin
{
/// <summary>
2021-05-16 21:14:28 +00:00
/// Save addtional plugin data. Inherit this interface if additional data e.g. cache needs to be saved,
/// Otherwise if LoadSettingJsonStorage or SaveSettingJsonStorage has been callded,
/// plugin settings will be automatically saved (see Flow.Launcher/PublicAPIInstance.SavePluginSettings) by Flow
/// </summary>
public interface ISavable
{
void Save();
}
}