namespace VideoBrowser.Controls.CefSharpBrowser.Models
{
using System.ComponentModel;
using VideoBrowser.Extensions;
///
/// Defines the .
///
public class BookmarkModel : INotifyPropertyChanged
{
#region Fields
private string _name;
private string _url;
#endregion Fields
#region Events
///
/// Defines the PropertyChanged.
///
public event PropertyChangedEventHandler PropertyChanged;
#endregion Events
#region Properties
///
/// Gets or sets the Name.
///
public string Name { get => _name; set => this.Set(this.PropertyChanged, ref _name, value); }
///
/// Gets or sets the Url.
///
public string Url { get => _url; set => this.Set(this.PropertyChanged, ref _url, value); }
#endregion Properties
}
}