aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-13 16:45:27 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-13 16:45:27 -0400
commitb07a1e67c26a595b906dccc135dfff62d9883e65 (patch)
tree1c1fc1aed561d7f5d3a99ee853940dda15b2f5a0 /MediaBrowser.Model
parentdc5fb2f4c2d0ab538821bf1d8d75b243a80d45e0 (diff)
Added episodes page
Diffstat (limited to 'MediaBrowser.Model')
-rw-r--r--MediaBrowser.Model/Querying/ItemQuery.cs24
-rw-r--r--MediaBrowser.Model/Querying/ItemSortBy.cs1
2 files changed, 22 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Querying/ItemQuery.cs b/MediaBrowser.Model/Querying/ItemQuery.cs
index 5a61d1c80b..45af17b0f2 100644
--- a/MediaBrowser.Model/Querying/ItemQuery.cs
+++ b/MediaBrowser.Model/Querying/ItemQuery.cs
@@ -43,7 +43,7 @@ namespace MediaBrowser.Model.Querying
/// </summary>
/// <value>The artists.</value>
public string[] Artists { get; set; }
-
+
/// <summary>
/// The sort order to return results with
/// </summary>
@@ -176,14 +176,32 @@ namespace MediaBrowser.Model.Querying
/// <value>The max official rating.</value>
public string MaxOfficialRating { get; set; }
+ /// <summary>
+ /// Gets or sets the min index number.
+ /// </summary>
+ /// <value>The min index number.</value>
public int? MinIndexNumber { get; set; }
+ /// <summary>
+ /// Gets or sets a value indicating whether this instance has parental rating.
+ /// </summary>
+ /// <value><c>null</c> if [has parental rating] contains no value, <c>true</c> if [has parental rating]; otherwise, <c>false</c>.</value>
public bool? HasParentalRating { get; set; }
+ /// <summary>
+ /// Gets or sets a value indicating whether this instance is HD.
+ /// </summary>
+ /// <value><c>null</c> if [is HD] contains no value, <c>true</c> if [is HD]; otherwise, <c>false</c>.</value>
public bool? IsHD { get; set; }
-
+
+ /// <summary>
+ /// Gets or sets the parent index number.
+ /// </summary>
+ /// <value>The parent index number.</value>
+ public int? ParentIndexNumber { get; set; }
+
/// <summary>
- /// Initializes a new instance of the <see cref="ItemQuery"/> class.
+ /// Initializes a new instance of the <see cref="ItemQuery" /> class.
/// </summary>
public ItemQuery()
{
diff --git a/MediaBrowser.Model/Querying/ItemSortBy.cs b/MediaBrowser.Model/Querying/ItemSortBy.cs
index 02307224f9..deb0ce51dd 100644
--- a/MediaBrowser.Model/Querying/ItemSortBy.cs
+++ b/MediaBrowser.Model/Querying/ItemSortBy.cs
@@ -81,5 +81,6 @@ namespace MediaBrowser.Model.Querying
public const string SongCount = "SongCount";
public const string AlbumCount = "AlbumCount";
public const string MusicVideoCount = "MusicVideoCount";
+ public const string SeriesSortName = "SeriesSortName";
}
}