2021-09-22 23:09:30 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Flow.Launcher.Plugin.BrowserBookmark.Models
|
2019-11-10 21:00:31 +00:00
|
|
|
|
{
|
|
|
|
|
|
public class Settings : BaseModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public bool OpenInNewBrowserWindow { get; set; } = true;
|
2019-11-11 10:17:37 +00:00
|
|
|
|
|
|
|
|
|
|
public string BrowserPath { get; set; }
|
2021-09-22 23:09:30 +00:00
|
|
|
|
|
2022-10-12 21:11:15 +00:00
|
|
|
|
public bool LoadChromeBookmark { get; set; } = true;
|
|
|
|
|
|
public bool LoadFirefoxBookmark { get; set; } = true;
|
|
|
|
|
|
public bool LoadEdgeBookmark { get; set; } = true;
|
|
|
|
|
|
|
2021-10-04 22:11:44 +00:00
|
|
|
|
public ObservableCollection<CustomBrowser> CustomChromiumBrowsers { get; set; } = new();
|
2019-11-10 21:00:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|