From 8051ea9b1bebcccfa1471c1a3db0e03fd7a70bcd Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 15 Feb 2015 19:33:06 -0500 Subject: update javascript connection manager to latest feature set --- MediaBrowser.Model/Querying/EpisodeQuery.cs | 51 +++++++++++++++++++++++++---- 1 file changed, 44 insertions(+), 7 deletions(-) (limited to 'MediaBrowser.Model/Querying/EpisodeQuery.cs') diff --git a/MediaBrowser.Model/Querying/EpisodeQuery.cs b/MediaBrowser.Model/Querying/EpisodeQuery.cs index e2fc3220a..78fe943e3 100644 --- a/MediaBrowser.Model/Querying/EpisodeQuery.cs +++ b/MediaBrowser.Model/Querying/EpisodeQuery.cs @@ -3,20 +3,57 @@ namespace MediaBrowser.Model.Querying { public class EpisodeQuery { + /// + /// Gets or sets the user identifier. + /// + /// The user identifier. public string UserId { get; set; } - + /// + /// Gets or sets the season identifier. + /// + /// The season identifier. public string SeasonId { get; set; } - + /// + /// Gets or sets the series identifier. + /// + /// The series identifier. public string SeriesId { get; set; } - + /// + /// Gets or sets a value indicating whether this instance is missing. + /// + /// null if [is missing] contains no value, true if [is missing]; otherwise, false. public bool? IsMissing { get; set; } - + /// + /// Gets or sets a value indicating whether this instance is virtual unaired. + /// + /// null if [is virtual unaired] contains no value, true if [is virtual unaired]; otherwise, false. public bool? IsVirtualUnaired { get; set; } - + /// + /// Gets or sets the season number. + /// + /// The season number. public int? SeasonNumber { get; set; } - + /// + /// Gets or sets the fields. + /// + /// The fields. public ItemFields[] Fields { get; set; } - + /// + /// Gets or sets the start index. + /// + /// The start index. + public int? StartIndex { get; set; } + /// + /// Gets or sets the limit. + /// + /// The limit. + public int? Limit { get; set; } + /// + /// Gets or sets the start item identifier. + /// + /// The start item identifier. + public string StartItemId { get; set; } + public EpisodeQuery() { Fields = new ItemFields[] { }; -- cgit v1.2.3