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

22 lines
481 B
C#
Raw Normal View History

2020-04-21 09:12:17 +00:00
using Flow.Launcher.Infrastructure.Storage;
2020-04-21 09:12:17 +00:00
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();
}
}
}