Flow.Launcher/Plugins/Flow.Launcher.Plugin.Url/Settings.cs
2025-09-04 22:06:02 +08:00

25 lines
627 B
C#

namespace Flow.Launcher.Plugin.Url
{
public class Settings : BaseModel
{
public bool UseCustomBrowser { get; set; } = false;
private string _browserPath = string.Empty;
public string BrowserPath
{
get => _browserPath;
set
{
if (_browserPath != value)
{
_browserPath = value;
OnPropertyChanged();
}
}
}
public bool OpenInNewBrowserWindow { get; set; } = false;
public bool OpenInPrivateMode { get; set; } = false;
}
}