aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Querying/MovieRecommendationQuery.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2021-05-21 13:43:49 +0200
committerBond_009 <bond.009@outlook.com>2021-05-21 13:43:49 +0200
commit9b8eb1ba53b8fc18b32217d4e1208b7b9604b644 (patch)
treed6795893ec308254f912333b4bc06d440a4a8c34 /MediaBrowser.Model/Querying/MovieRecommendationQuery.cs
parenta937a854f2582a8770d9ada7c24375065a21f7a5 (diff)
Remove dead code
Diffstat (limited to 'MediaBrowser.Model/Querying/MovieRecommendationQuery.cs')
-rw-r--r--MediaBrowser.Model/Querying/MovieRecommendationQuery.cs47
1 files changed, 0 insertions, 47 deletions
diff --git a/MediaBrowser.Model/Querying/MovieRecommendationQuery.cs b/MediaBrowser.Model/Querying/MovieRecommendationQuery.cs
deleted file mode 100644
index b800f5de5f..0000000000
--- a/MediaBrowser.Model/Querying/MovieRecommendationQuery.cs
+++ /dev/null
@@ -1,47 +0,0 @@
-#nullable disable
-#pragma warning disable CS1591
-
-using System;
-
-namespace MediaBrowser.Model.Querying
-{
- public class MovieRecommendationQuery
- {
- public MovieRecommendationQuery()
- {
- ItemLimit = 10;
- CategoryLimit = 6;
- Fields = Array.Empty<ItemFields>();
- }
-
- /// <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; }
- }
-}