Flow.Launcher/Plugins/Flow.Launcher.Plugin.WebSearch/SettingsViewModel.cs
2020-04-21 21:27:02 +10:00

22 lines
No EOL
481 B
C#

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