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

10 lines
257 B
C#

namespace Flow.Launcher.Plugin.Url
{
public class Settings
{
public string BrowserPath { get; set; }
public bool OpenInNewBrowserWindow { get; set; } = true;
public bool AlwaysOpenWithHttps { get; set; } = false;
}
}