namespace VideoBrowser.Controls.CefSharpBrowser.Models { using System.Collections.Generic; /// /// Defines the . /// public class BrowserSettings { #region Constructors /// /// Initializes a new instance of the class. /// public BrowserSettings() { this.BookmarkModels = new List(); this.DownloadItems = new List(); this.TabSettingModels = new List(); } #endregion Constructors #region Properties /// /// Gets or sets the BookmarkModels. /// public IList BookmarkModels { get; set; } /// /// Gets or sets the DownloadItems. /// public IList DownloadItems { get; set; } /// /// Gets or sets the OutputFolder. /// public string OutputFolder { 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 } }