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

45 lines
799 B
C#
Raw Permalink Normal View History

namespace Flow.Launcher.Plugin.BrowserBookmark.Models;
public class CustomBrowser : BaseModel
{
private string _name;
private string _dataDirectoryPath;
private BrowserType _browserType = BrowserType.Chromium;
2023-02-03 05:07:46 +00:00
public string Name
{
get => _name;
set
2021-09-23 18:32:10 +00:00
{
_name = value;
OnPropertyChanged();
2021-09-23 18:32:10 +00:00
}
}
public string DataDirectoryPath
{
get => _dataDirectoryPath;
set
2023-02-03 05:07:46 +00:00
{
_dataDirectoryPath = value;
OnPropertyChanged();
2023-02-03 05:07:46 +00:00
}
}
public BrowserType BrowserType
2023-02-03 05:07:46 +00:00
{
get => _browserType;
set
{
_browserType = value;
OnPropertyChanged();
}
}
2023-02-03 05:07:46 +00:00
}
public enum BrowserType
{
Chromium,
Firefox,
}