aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/DisplayPreferences.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-18 15:57:28 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-18 15:57:28 -0400
commit32bc545a854480f11bbb7dbaa4f5205f11acc7d6 (patch)
treeb792b6c932a6f77cec1535267e1096251bc8ab95 /MediaBrowser.Model/Entities/DisplayPreferences.cs
parent48d60b2f6ad2cf88bd5336025446b005d24fe4ee (diff)
removed unused attributes
Diffstat (limited to 'MediaBrowser.Model/Entities/DisplayPreferences.cs')
-rw-r--r--MediaBrowser.Model/Entities/DisplayPreferences.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/MediaBrowser.Model/Entities/DisplayPreferences.cs b/MediaBrowser.Model/Entities/DisplayPreferences.cs
index 31edab621..009df2678 100644
--- a/MediaBrowser.Model/Entities/DisplayPreferences.cs
+++ b/MediaBrowser.Model/Entities/DisplayPreferences.cs
@@ -1,5 +1,4 @@
using MediaBrowser.Model.Drawing;
-using ProtoBuf;
using System;
using System.Collections.Generic;
@@ -8,7 +7,6 @@ namespace MediaBrowser.Model.Entities
/// <summary>
/// Defines the display preferences for any item that supports them (usually Folders)
/// </summary>
- [ProtoContract]
public class DisplayPreferences
{
/// <summary>
@@ -31,67 +29,56 @@ namespace MediaBrowser.Model.Entities
/// Gets or sets the user id.
/// </summary>
/// <value>The user id.</value>
- [ProtoMember(1)]
public Guid Id { get; set; }
/// <summary>
/// Gets or sets the type of the view.
/// </summary>
/// <value>The type of the view.</value>
- [ProtoMember(2)]
public string ViewType { get; set; }
/// <summary>
/// Gets or sets the sort by.
/// </summary>
/// <value>The sort by.</value>
- [ProtoMember(4)]
public string SortBy { get; set; }
/// <summary>
/// Gets or sets the index by.
/// </summary>
/// <value>The index by.</value>
- [ProtoMember(5)]
public string IndexBy { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [remember indexing].
/// </summary>
/// <value><c>true</c> if [remember indexing]; otherwise, <c>false</c>.</value>
- [ProtoMember(6)]
public bool RememberIndexing { get; set; }
/// <summary>
/// Gets or sets the height of the primary image.
/// </summary>
/// <value>The height of the primary image.</value>
- [ProtoMember(7)]
public int PrimaryImageHeight { get; set; }
/// <summary>
/// Gets or sets the width of the primary image.
/// </summary>
/// <value>The width of the primary image.</value>
- [ProtoMember(8)]
public int PrimaryImageWidth { get; set; }
/// <summary>
/// Gets or sets the custom prefs.
/// </summary>
/// <value>The custom prefs.</value>
- [ProtoMember(9)]
public Dictionary<string, string> CustomPrefs { get; set; }
/// <summary>
/// Gets or sets the scroll direction.
/// </summary>
/// <value>The scroll direction.</value>
- [ProtoMember(10)]
public ScrollDirection ScrollDirection { 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>
- [ProtoMember(11)]
public bool RememberSorting { get; set; }
/// <summary>
/// Gets or sets the sort order.
/// </summary>
/// <value>The sort order.</value>
- [ProtoMember(12)]
public SortOrder SortOrder { get; set; }
/// <summary>