Flow.Launcher/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Models/Settings.cs

19 lines
562 B
C#
Raw Permalink Normal View History

2023-04-25 12:04:08 +00:00
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; }
2025-06-05 02:21:24 +00:00
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 ObservableCollection<CustomBrowser> CustomChromiumBrowsers { get; set; } = new();
}