diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-06-14 23:13:13 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-14 23:13:13 -0400 |
| commit | c91b608005f40fa88686df86111cfd61d1121bc9 (patch) | |
| tree | 3491bae1d5a6551ed9856a6817698782944bae80 /MediaBrowser.Controller/Entities/InternalItemsQuery.cs | |
| parent | 51de0d3868f13f20cae16831fea3f83bfb2b15c2 (diff) | |
| parent | 80863e13264e871599d44668824a40159b0b080e (diff) | |
Merge pull request #1845 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Controller/Entities/InternalItemsQuery.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/InternalItemsQuery.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs index 5b9d94fc2..e193a9dad 100644 --- a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs +++ b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs @@ -110,6 +110,7 @@ namespace MediaBrowser.Controller.Entities internal List<Guid> ItemIdsFromPersonFilters { get; set; } public int? ParentIndexNumber { get; set; } + public int? ParentIndexNumberNotEquals { get; set; } public int? IndexNumber { get; set; } public int? MinParentalRating { get; set; } public int? MaxParentalRating { get; set; } @@ -141,7 +142,8 @@ namespace MediaBrowser.Controller.Entities public bool GroupByPresentationUniqueKey { get; set; } public bool EnableTotalRecordCount { get; set; } public bool ForceDirect { get; set; } - public Dictionary<string,string> ExcludeProviderIds { get; set; } + public Dictionary<string, string> ExcludeProviderIds { get; set; } + public string GroupByAncestorOfType { get; set; } public InternalItemsQuery() { |
