update search

This commit is contained in:
Luke Pulverenti
2017-05-06 16:21:08 -04:00
parent 4764e39247
commit 384a35d878
3 changed files with 15 additions and 2 deletions

View File

@@ -33,7 +33,9 @@ namespace MediaBrowser.Model.Search
public bool IncludeStudios { get; set; }
public bool IncludeArtists { get; set; }
public string[] MediaTypes { get; set; }
public string[] IncludeItemTypes { get; set; }
public string[] ExcludeItemTypes { get; set; }
public string ParentId { get; set; }
public bool? IsMovie { get; set; }
@@ -54,7 +56,9 @@ namespace MediaBrowser.Model.Search
IncludePeople = true;
IncludeStudios = true;
MediaTypes = new string[] { };
IncludeItemTypes = new string[] { };
ExcludeItemTypes = new string[] { };
}
}
}