Flow.Launcher/Plugins/Flow.Launcher.Plugin.WebSearch/SettingsViewModel.cs

21 lines
No EOL
428 B
C#

using Flow.Launcher.Infrastructure.Storage;
namespace Flow.Launcher.Plugin.WebSearch
{
public class SettingsViewModel
{
private readonly PluginJsonStorage<Settings> _storage;
public SettingsViewModel(Settings settings)
{
Settings = settings;
}
public Settings Settings { get; }
public void Save()
{
_storage.Save();
}
}
}