Flow.Launcher/Plugins/Flow.Launcher.Plugin.Url/SettingsViewModel.cs
2025-10-09 10:36:42 +02:00

9 lines
213 B
C#

using System.Collections.Generic;
using System.Linq;
namespace Flow.Launcher.Plugin.Url;
public class SettingsViewModel(Settings settings) : BaseModel
{
public Settings Settings { get; } = settings;
}