Stub out new filtering api

This commit is contained in:
Luke Pulverenti
2017-12-03 17:15:21 -05:00
parent 8717f81bf4
commit 175c085d90
6 changed files with 151 additions and 10 deletions

View File

@@ -14,6 +14,7 @@ namespace MediaBrowser.Model.LiveTv
ChannelIds = new string[] { };
OrderBy = new Tuple<string, SortOrder>[] { };
Genres = new string[] { };
GenreIds = new string[] { };
EnableTotalRecordCount = true;
EnableUserData = true;
}
@@ -110,6 +111,7 @@ namespace MediaBrowser.Model.LiveTv
/// Limit results to items containing specific genres
/// </summary>
/// <value>The genres.</value>
public string[] GenreIds { get; set; }
public string[] Genres { get; set; }
}
}