using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Sorting; using MediaBrowser.Model.Querying; using System; namespace Emby.Server.Implementations.Sorting { /// /// Class DateCreatedComparer /// public class DateCreatedComparer : IBaseItemComparer { /// /// Compares the specified x. /// /// The x. /// The y. /// System.Int32. public int Compare(BaseItem x, BaseItem y) { return DateTime.Compare(x.DateCreated, y.DateCreated); } /// /// Gets the name. /// /// The name. public string Name { get { return ItemSortBy.DateCreated; } } } }