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