mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
21 lines
No EOL
428 B
C#
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();
|
|
}
|
|
}
|
|
} |