浏览代码

sync model

Luke Pulverenti 9 年之前
父节点
当前提交
0cbc9c7900
共有 2 个文件被更改,包括 9 次插入3 次删除
  1. 0 3
      MediaBrowser.Model/Entities/MediaStream.cs
  2. 9 0
      MediaBrowser.Model/Library/UserViewQuery.cs

+ 0 - 3
MediaBrowser.Model/Entities/MediaStream.cs

@@ -233,8 +233,5 @@ namespace MediaBrowser.Model.Entities
         /// </summary>
         /// <value><c>null</c> if [is cabac] contains no value, <c>true</c> if [is cabac]; otherwise, <c>false</c>.</value>
         public bool? IsCabac { get; set; }
-
-        [IgnoreDataMember]
-        public List<int> KeyFrames { get; set; }
     }
 }

+ 9 - 0
MediaBrowser.Model/Library/UserViewQuery.cs

@@ -15,9 +15,18 @@ namespace MediaBrowser.Model.Library
         /// <value><c>true</c> if [include external content]; otherwise, <c>false</c>.</value>
         public bool IncludeExternalContent { get; set; }
 
+        /// <summary>
+        /// Gets or sets a value indicating whether [include hidden].
+        /// </summary>
+        /// <value><c>true</c> if [include hidden]; otherwise, <c>false</c>.</value>
+        public bool IncludeHidden { get; set; }
+
+        public string[] PresetViews { get; set; }
+
         public UserViewQuery()
         {
             IncludeExternalContent = true;
+            PresetViews = new string[] { };
         }
     }
 }