Add ShowBackdrop to DisplayPreferences.cs

pull/702/head
Eric Reed 11 years ago
parent 9482354f55
commit 94af5c36df

@ -22,6 +22,7 @@ namespace MediaBrowser.Model.Entities
RememberIndexing = false;
PrimaryImageHeight = 250;
PrimaryImageWidth = 250;
ShowBackdrop = true;
CustomPrefs = new Dictionary<string, string>();
}
@ -71,6 +72,11 @@ namespace MediaBrowser.Model.Entities
/// <value>The scroll direction.</value>
public ScrollDirection ScrollDirection { get; set; }
/// <summary>
/// Gets or sets a value indicating whether to show backdrops on this item.
/// </summary>
/// <value><c>true</c> if showing backdrops; otherwise, <c>false</c>.</value>
public bool ShowBackdrop { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [remember sorting].
/// </summary>
/// <value><c>true</c> if [remember sorting]; otherwise, <c>false</c>.</value>

Loading…
Cancel
Save