using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Sorting;
using MediaBrowser.Model.Querying;
namespace Emby.Server.Implementations.Sorting
{
///
/// Class CriticRatingComparer.
///
public class CriticRatingComparer : IBaseItemComparer
{
///
/// Gets the name.
///
/// The name.
public string Name => ItemSortBy.CriticRating;
///
/// Compares the specified x.
///
/// The x.
/// The y.
/// System.Int32.
public int Compare(BaseItem? x, BaseItem? y)
{
return GetValue(x).CompareTo(GetValue(y));
}
private static float GetValue(BaseItem? x)
{
return x?.CriticRating ?? 0;
}
}
}