You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
725 B
26 lines
725 B
using MediaBrowser.UI.Pages;
|
|
|
|
namespace MediaBrowser.Plugins.DefaultTheme.DisplayPreferences
|
|
{
|
|
/// <summary>
|
|
/// Class BaseDisplayPreferencesPage
|
|
/// </summary>
|
|
public class BaseDisplayPreferencesPage : BasePage
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the display preferences window.
|
|
/// </summary>
|
|
/// <value>The display preferences window.</value>
|
|
public DisplayPreferencesMenu DisplayPreferencesWindow { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets the main page.
|
|
/// </summary>
|
|
/// <value>The main page.</value>
|
|
protected BaseListPage MainPage
|
|
{
|
|
get { return DisplayPreferencesWindow.MainPage; }
|
|
}
|
|
}
|
|
}
|