jellyfin/Emby.Server.Implementations/Sorting/RandomComparer.cs

34 lines
861 B
C#
Raw Normal View History

2013-03-09 23:22:36 -05:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Sorting;
2013-03-10 00:36:39 -05:00
using MediaBrowser.Model.Querying;
using System;
2013-03-09 23:22:36 -05:00
namespace Emby.Server.Implementations.Sorting
2013-03-09 23:22:36 -05:00
{
/// <summary>
/// Class RandomComparer
/// </summary>
public class RandomComparer : IBaseItemComparer
{
/// <summary>
/// Compares the specified x.
/// </summary>
/// <param name="x">The x.</param>
/// <param name="y">The y.</param>
/// <returns>System.Int32.</returns>
public int Compare(BaseItem x, BaseItem y)
{
return Guid.NewGuid().CompareTo(Guid.NewGuid());
}
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public string Name
{
get { return ItemSortBy.Random; }
}
}
}