aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Querying/ItemQuery.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Querying/ItemQuery.cs')
-rw-r--r--MediaBrowser.Model/Querying/ItemQuery.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Querying/ItemQuery.cs b/MediaBrowser.Model/Querying/ItemQuery.cs
index 69c79104a..20eac55e8 100644
--- a/MediaBrowser.Model/Querying/ItemQuery.cs
+++ b/MediaBrowser.Model/Querying/ItemQuery.cs
@@ -207,6 +207,24 @@ namespace MediaBrowser.Model.Querying
public int? ParentIndexNumber { get; set; }
/// <summary>
+ /// Gets or sets the min players.
+ /// </summary>
+ /// <value>The min players.</value>
+ public int? MinPlayers { get; set; }
+
+ /// <summary>
+ /// Gets or sets the name starts with or greater.
+ /// </summary>
+ /// <value>The name starts with or greater.</value>
+ public string NameStartsWithOrGreater { get; set; }
+
+ /// <summary>
+ /// Gets or sets the album artist starts with or greater.
+ /// </summary>
+ /// <value>The album artist starts with or greater.</value>
+ public string AlbumArtistStartsWithOrGreater { get; set; }
+
+ /// <summary>
/// Initializes a new instance of the <see cref="ItemQuery" /> class.
/// </summary>
public ItemQuery()