aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Querying
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-10 21:43:07 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-10 21:43:07 -0400
commit359f90afd4723ad487a68bf059efb458e4c7dc9e (patch)
tree1e4b6752d1d73154731f86638d8501513522a7db /MediaBrowser.Model/Querying
parent401c962c7f22d230d42ee8aca8685f3f3d7b3ac1 (diff)
added GetMovieRecommendations to IApiClient
Diffstat (limited to 'MediaBrowser.Model/Querying')
-rw-r--r--MediaBrowser.Model/Querying/MovieRecommendationQuery.cs39
1 files changed, 39 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Querying/MovieRecommendationQuery.cs b/MediaBrowser.Model/Querying/MovieRecommendationQuery.cs
new file mode 100644
index 0000000000..91417a4a77
--- /dev/null
+++ b/MediaBrowser.Model/Querying/MovieRecommendationQuery.cs
@@ -0,0 +1,39 @@
+
+namespace MediaBrowser.Model.Querying
+{
+ public class MovieRecommendationQuery
+ {
+ /// <summary>
+ /// Gets or sets the user identifier.
+ /// </summary>
+ /// <value>The user identifier.</value>
+ public string UserId { get; set; }
+ /// <summary>
+ /// Gets or sets the parent identifier.
+ /// </summary>
+ /// <value>The parent identifier.</value>
+ public string ParentId { get; set; }
+ /// <summary>
+ /// Gets or sets the item limit.
+ /// </summary>
+ /// <value>The item limit.</value>
+ public int ItemLimit { get; set; }
+ /// <summary>
+ /// Gets or sets the category limit.
+ /// </summary>
+ /// <value>The category limit.</value>
+ public int CategoryLimit { get; set; }
+ /// <summary>
+ /// Gets or sets the fields.
+ /// </summary>
+ /// <value>The fields.</value>
+ public ItemFields[] Fields { get; set; }
+
+ public MovieRecommendationQuery()
+ {
+ ItemLimit = 10;
+ CategoryLimit = 6;
+ Fields = new ItemFields[] { };
+ }
+ }
+}