Flow.Launcher/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Models/Settings.cs
2025-12-28 17:32:20 +01:00

19 lines
611 B
C#

using System.Collections.ObjectModel;
namespace Flow.Launcher.Plugin.BrowserBookmark.Models;
public class Settings : BaseModel
{
public bool OpenInNewBrowserWindow { get; set; } = true;
public string BrowserPath { get; set; }
public bool EnableFavicons { get; set; } = false;
public bool LoadChromeBookmark { get; set; } = true;
public bool LoadFirefoxBookmark { get; set; } = true;
public bool LoadEdgeBookmark { get; set; } = true;
public bool ReuseTabs { get; set; } = false;
public ObservableCollection<CustomBrowser> CustomChromiumBrowsers { get; set; } = new();
}