aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dto/RatingType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Dto/RatingType.cs')
-rw-r--r--MediaBrowser.Model/Dto/RatingType.cs12
1 files changed, 10 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Dto/RatingType.cs b/MediaBrowser.Model/Dto/RatingType.cs
index 033776f9c6..2c2b7b705d 100644
--- a/MediaBrowser.Model/Dto/RatingType.cs
+++ b/MediaBrowser.Model/Dto/RatingType.cs
@@ -1,10 +1,18 @@
-#pragma warning disable CS1591
-
namespace MediaBrowser.Model.Dto
{
+ /// <summary>
+ /// The type of a community rating.
+ /// </summary>
public enum RatingType
{
+ /// <summary>
+ /// The rating is a numeric score.
+ /// </summary>
Score,
+
+ /// <summary>
+ /// The rating is based on likes.
+ /// </summary>
Likes
}
}