mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
21 lines
550 B
C#
21 lines
550 B
C#
|
namespace MediaBrowser.Controller.Entities
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Interface IHasCriticRating
|
|||
|
/// </summary>
|
|||
|
public interface IHasCriticRating
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Gets or sets the critic rating.
|
|||
|
/// </summary>
|
|||
|
/// <value>The critic rating.</value>
|
|||
|
float? CriticRating { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Gets or sets the critic rating summary.
|
|||
|
/// </summary>
|
|||
|
/// <value>The critic rating summary.</value>
|
|||
|
string CriticRatingSummary { get; set; }
|
|||
|
}
|
|||
|
}
|