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

21 lines
428 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(Settings settings)
{
Settings = settings;
}
public Settings Settings { get; }
public void Save()
{
_storage.Save();
}
}
}