aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-09 23:20:11 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-09 23:20:11 -0500
commit95eaf88abd6a979b19f4ee998936ba6f2f4eef4b (patch)
tree566ce2f3c96bc231143df128264c5b9a0047ead7 /MediaBrowser.Controller/Entities/InternalItemsQuery.cs
parent1a80362a0f04c3cc571456af64f9de19c0c30d2a (diff)
fixes #943 - Add web client filtering by genres, parental ratings, tags and years
Diffstat (limited to 'MediaBrowser.Controller/Entities/InternalItemsQuery.cs')
-rw-r--r--MediaBrowser.Controller/Entities/InternalItemsQuery.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
index 1faa6c391..30043682d 100644
--- a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
+++ b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
@@ -69,9 +69,13 @@ namespace MediaBrowser.Controller.Entities
public ImageType[] ImageTypes { get; set; }
public VideoType[] VideoTypes { get; set; }
public int[] Years { get; set; }
+ public string[] Tags { get; set; }
+ public string[] OfficialRatings { get; set; }
public InternalItemsQuery()
{
+ Tags = new string[] { };
+ OfficialRatings = new string[] { };
SortBy = new string[] { };
MediaTypes = new string[] { };
IncludeItemTypes = new string[] { };