namespace VideoBrowser.Controls.CefSharpBrowser { using System.Collections.Generic; using VideoBrowser.Controls.CefSharpBrowser.Models; /// /// Defines the . /// public class BrowserSettings { #region Constructors /// /// Initializes a new instance of the class. /// public BrowserSettings() { this.BookmarkModels = new List(); this.TabSettingModels = new List(); } #endregion Constructors #region Properties /// /// Gets or sets the BookmarkModels. /// public IList BookmarkModels { get; set; } /// /// Gets or sets the SelectedTabSettingIndex. /// public int SelectedTabSettingIndex { get; set; } /// /// Gets or sets the TabSettingModels. /// public IList TabSettingModels { get; set; } /// /// Gets or sets the Version. /// public string Version { get; set; } = "1.0"; #endregion Properties } }