Flow.Launcher/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Models/CustomBrowser.cs
2021-09-23 13:32:10 -05:00

26 lines
No EOL
635 B
C#

namespace Flow.Launcher.Plugin.BrowserBookmark.Models
{
public class CustomBrowser : BaseModel
{
private string _name;
private string _dataDirectoryPath;
public string Name
{
get => _name;
set
{
_name = value;
OnPropertyChanged(nameof(Name));
}
}
public string DataDirectoryPath
{
get => _dataDirectoryPath;
set
{
_dataDirectoryPath = value;
OnPropertyChanged(nameof(DataDirectoryPath));
}
}
}
}