Flow.Launcher/Plugins/Flow.Launcher.Plugin.WebSearch/SettingsViewModel.cs
2025-03-13 22:02:45 +08:00

12 lines
243 B
C#

namespace Flow.Launcher.Plugin.WebSearch
{
public class SettingsViewModel
{
public SettingsViewModel(Settings settings)
{
Settings = settings;
}
public Settings Settings { get; }
}
}