aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/UserItemData.cs
diff options
context:
space:
mode:
authorRich Lander <rlander@microsoft.com>2021-08-13 20:34:36 -0700
committerRich Lander <rlander@microsoft.com>2021-08-13 20:34:36 -0700
commite3df4dcaaef7c2a72436a61492292376565ec21d (patch)
tree1615bb4dece68874d170d8448bcb41c60c758d8f /MediaBrowser.Controller/Entities/UserItemData.cs
parent04571e93f80ce707372c7fe811150133d288b9b7 (diff)
Fix warnings in MediaBrowser.Controller
Diffstat (limited to 'MediaBrowser.Controller/Entities/UserItemData.cs')
-rw-r--r--MediaBrowser.Controller/Entities/UserItemData.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/MediaBrowser.Controller/Entities/UserItemData.cs b/MediaBrowser.Controller/Entities/UserItemData.cs
index 6ab2116d73..9179eae939 100644
--- a/MediaBrowser.Controller/Entities/UserItemData.cs
+++ b/MediaBrowser.Controller/Entities/UserItemData.cs
@@ -13,6 +13,13 @@ namespace MediaBrowser.Controller.Entities
public class UserItemData
{
/// <summary>
+ /// The _rating.
+ /// </summary>
+ private double? _rating;
+
+ public const double MinLikeValue = 6.5;
+
+ /// <summary>
/// Gets or sets the user id.
/// </summary>
/// <value>The user id.</value>
@@ -25,11 +32,6 @@ namespace MediaBrowser.Controller.Entities
public string Key { get; set; }
/// <summary>
- /// The _rating.
- /// </summary>
- private double? _rating;
-
- /// <summary>
/// Gets or sets the users 0-10 rating.
/// </summary>
/// <value>The rating.</value>
@@ -93,8 +95,6 @@ namespace MediaBrowser.Controller.Entities
/// <value>The index of the subtitle stream.</value>
public int? SubtitleStreamIndex { get; set; }
- public const double MinLikeValue = 6.5;
-
/// <summary>
/// Gets or sets a value indicating whether the item is liked or not.
/// This should never be serialized.