2020-04-21 09:12:17 +00:00
|
|
|
|
using Flow.Launcher.Infrastructure.Storage;
|
2016-06-20 23:14:32 +00:00
|
|
|
|
|
2020-04-21 09:12:17 +00:00
|
|
|
|
namespace Flow.Launcher.Plugin.WebSearch
|
2016-06-20 23:14:32 +00:00
|
|
|
|
{
|
|
|
|
|
|
public class SettingsViewModel
|
|
|
|
|
|
{
|
2017-02-07 00:21:39 +00:00
|
|
|
|
private readonly PluginJsonStorage<Settings> _storage;
|
2016-06-20 23:14:32 +00:00
|
|
|
|
|
2021-05-12 11:38:29 +00:00
|
|
|
|
public SettingsViewModel(Settings settings)
|
2016-06-20 23:14:32 +00:00
|
|
|
|
{
|
2021-05-12 11:38:29 +00:00
|
|
|
|
Settings = settings;
|
2016-06-20 23:14:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-12 11:38:29 +00:00
|
|
|
|
public Settings Settings { get; }
|
2016-06-20 23:14:32 +00:00
|
|
|
|
|
|
|
|
|
|
public void Save()
|
|
|
|
|
|
{
|
|
|
|
|
|
_storage.Save();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|