19 lines
358 B
C#
19 lines
358 B
C#
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
|
|
}
|
|
}
|