aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-03-01 13:42:39 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-03-01 13:42:39 -0500
commit177cc41e3dfd7b2fc5045a183634059260585f20 (patch)
treec3105775f2c8fba88ae5792ab844f776a59e7be2 /MediaBrowser.Controller/Entities/InternalItemsQuery.cs
parent8454aaf053ac49bf889f9a13f5b09a9906ae066a (diff)
dlna fix
Diffstat (limited to 'MediaBrowser.Controller/Entities/InternalItemsQuery.cs')
-rw-r--r--MediaBrowser.Controller/Entities/InternalItemsQuery.cs8
1 files changed, 5 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
index 0595d0569..f6af12369 100644
--- a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
+++ b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
@@ -96,7 +96,7 @@ namespace MediaBrowser.Controller.Entities
public int? MinIndexNumber { get; set; }
public double? MinCriticRating { get; set; }
public double? MinCommunityRating { get; set; }
-
+
public string[] ChannelIds { get; set; }
internal List<Guid> ItemIdsFromPersonFilters { get; set; }
@@ -112,7 +112,8 @@ namespace MediaBrowser.Controller.Entities
public string[] TopParentIds { get; set; }
public LocationType[] ExcludeLocationTypes { get; set; }
-
+ public string[] PresetViews { get; set; }
+
public InternalItemsQuery()
{
BlockUnratedItems = new UnratedItem[] { };
@@ -137,6 +138,7 @@ namespace MediaBrowser.Controller.Entities
TopParentIds = new string[] { };
ExcludeTags = new string[] { };
ExcludeLocationTypes = new LocationType[] { };
+ PresetViews = new string[] { };
}
public InternalItemsQuery(User user)
@@ -153,7 +155,7 @@ namespace MediaBrowser.Controller.Entities
}
ExcludeTags = policy.BlockedTags;
-
+
User = user;
}
}