diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-08-30 20:02:31 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-30 20:02:31 +0200 |
| commit | ae031fdd28cac50a50e6713d64fa92ddd496aaf2 (patch) | |
| tree | b14410bc8873ec1c532ad2bab31ec1a65c29afa8 /MediaBrowser.Controller/Entities/UserItemData.cs | |
| parent | a84dc794c6960a8a6e1dc0660e15a030e0f51305 (diff) | |
| parent | 442e756395c69cf001e2bafa6512e82a79d04c6b (diff) | |
Merge branch 'master' into tonemap-overlay
Diffstat (limited to 'MediaBrowser.Controller/Entities/UserItemData.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/UserItemData.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/MediaBrowser.Controller/Entities/UserItemData.cs b/MediaBrowser.Controller/Entities/UserItemData.cs index 6ab2116d7..50ba9ef30 100644 --- a/MediaBrowser.Controller/Entities/UserItemData.cs +++ b/MediaBrowser.Controller/Entities/UserItemData.cs @@ -12,6 +12,13 @@ namespace MediaBrowser.Controller.Entities /// </summary> public class UserItemData { + public const double MinLikeValue = 6.5; + + /// <summary> + /// The _rating. + /// </summary> + private double? _rating; + /// <summary> /// Gets or sets the user id. /// </summary> @@ -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. |
