aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-03-21 12:50:50 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-03-21 12:50:50 -0400
commit23fe6dc4be28c4d273bb22962ac769c749931090 (patch)
tree702ba05944d430c84e679325bd4f894256e92637 /MediaBrowser.Controller/Entities/InternalItemsQuery.cs
parentdfafa98da3ad6d1c2aa982cebd63bd35bba895e0 (diff)
update db querying
Diffstat (limited to 'MediaBrowser.Controller/Entities/InternalItemsQuery.cs')
-rw-r--r--MediaBrowser.Controller/Entities/InternalItemsQuery.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
index e98c89abf..b568aec18 100644
--- a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
+++ b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
@@ -128,8 +128,14 @@ namespace MediaBrowser.Controller.Entities
public SeriesStatus[] SeriesStatuses { get; set; }
public string AlbumArtistStartsWithOrGreater { get; set; }
+ public string[] AlbumNames { get; set; }
+ public string[] ArtistNames { get; set; }
+
public InternalItemsQuery()
{
+ AlbumNames = new string[] { };
+ ArtistNames = new string[] { };
+
BlockUnratedItems = new UnratedItem[] { };
Tags = new string[] { };
OfficialRatings = new string[] { };