aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-10-29 15:01:04 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-10-29 15:01:04 -0400
commit67dc2a0bf98cf02c1ff07608c0f10b4e0ead6f58 (patch)
tree85e7e364d7243320c969da8fa66f1f11c3f5e173 /MediaBrowser.Controller/Entities/InternalItemsQuery.cs
parent76586d3a49e21e06108c6abdec155b552c2745cb (diff)
update item queries
Diffstat (limited to 'MediaBrowser.Controller/Entities/InternalItemsQuery.cs')
-rw-r--r--MediaBrowser.Controller/Entities/InternalItemsQuery.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
index 038a46316..5c60e19f0 100644
--- a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
+++ b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
@@ -103,7 +103,9 @@ namespace MediaBrowser.Controller.Entities
public Guid? ParentId { get; set; }
public string[] AncestorIds { get; set; }
-
+
+ public LocationType[] ExcludeLocationTypes { get; set; }
+
public InternalItemsQuery()
{
Tags = new string[] { };
@@ -123,6 +125,7 @@ namespace MediaBrowser.Controller.Entities
ChannelIds = new string[] { };
ItemIds = new string[] { };
AncestorIds = new string[] { };
+ ExcludeLocationTypes = new LocationType[] { };
}
public InternalItemsQuery(User user)