2013-02-20 20:33:05 -05:00
|
|
|
|
|
2013-03-10 00:36:39 -05:00
|
|
|
|
namespace MediaBrowser.Model.Querying
|
2013-02-20 20:33:05 -05:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2013-03-09 23:22:36 -05:00
|
|
|
|
/// These represent sort orders that are known by the core
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// </summary>
|
2013-03-09 23:22:36 -05:00
|
|
|
|
public static class ItemSortBy
|
2013-02-20 20:33:05 -05:00
|
|
|
|
{
|
2013-11-20 12:10:02 -05:00
|
|
|
|
public const string AiredEpisodeOrder = "AiredEpisodeOrder";
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The album
|
|
|
|
|
|
/// </summary>
|
2013-03-09 23:22:36 -05:00
|
|
|
|
public const string Album = "Album";
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The album artist
|
|
|
|
|
|
/// </summary>
|
2013-03-09 23:22:36 -05:00
|
|
|
|
public const string AlbumArtist = "AlbumArtist";
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The artist
|
|
|
|
|
|
/// </summary>
|
2013-03-09 23:22:36 -05:00
|
|
|
|
public const string Artist = "Artist";
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The date created
|
|
|
|
|
|
/// </summary>
|
2013-03-09 23:22:36 -05:00
|
|
|
|
public const string DateCreated = "DateCreated";
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// <summary>
|
2013-07-18 11:07:31 -04:00
|
|
|
|
/// The official rating
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string OfficialRating = "OfficialRating";
|
|
|
|
|
|
/// <summary>
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// The date played
|
|
|
|
|
|
/// </summary>
|
2013-03-09 23:22:36 -05:00
|
|
|
|
public const string DatePlayed = "DatePlayed";
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The premiere date
|
|
|
|
|
|
/// </summary>
|
2013-03-09 23:22:36 -05:00
|
|
|
|
public const string PremiereDate = "PremiereDate";
|
2015-04-03 12:31:56 -04:00
|
|
|
|
public const string StartDate = "StartDate";
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The sort name
|
|
|
|
|
|
/// </summary>
|
2013-03-09 23:22:36 -05:00
|
|
|
|
public const string SortName = "SortName";
|
2013-09-06 15:17:15 -04:00
|
|
|
|
public const string Name = "Name";
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The random
|
|
|
|
|
|
/// </summary>
|
2013-03-09 23:22:36 -05:00
|
|
|
|
public const string Random = "Random";
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The runtime
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string Runtime = "Runtime";
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The community rating
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string CommunityRating = "CommunityRating";
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The production year
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string ProductionYear = "ProductionYear";
|
2013-03-30 10:57:30 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The play count
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string PlayCount = "PlayCount";
|
2013-05-05 22:23:19 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The critic rating
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string CriticRating = "CriticRating";
|
2013-09-02 19:17:25 -04:00
|
|
|
|
public const string IsFolder = "IsFolder";
|
2013-09-05 08:48:14 -04:00
|
|
|
|
public const string IsUnplayed = "IsUnplayed";
|
|
|
|
|
|
public const string IsPlayed = "IsPlayed";
|
2013-09-13 16:45:27 -04:00
|
|
|
|
public const string SeriesSortName = "SeriesSortName";
|
2013-09-13 16:53:46 -04:00
|
|
|
|
public const string VideoBitRate = "VideoBitRate";
|
2013-10-24 13:49:24 -04:00
|
|
|
|
public const string AirTime = "AirTime";
|
2014-03-08 13:17:05 -05:00
|
|
|
|
public const string Studio = "Studio";
|
|
|
|
|
|
public const string Players = "Players";
|
|
|
|
|
|
public const string GameSystem = "GameSystem";
|
2014-05-18 17:23:03 -04:00
|
|
|
|
public const string IsFavoriteOrLiked = "IsFavoriteOrLiked";
|
2015-02-16 11:47:30 -05:00
|
|
|
|
public const string DateLastContentAdded = "DateLastContentAdded";
|
2016-06-14 23:12:32 -04:00
|
|
|
|
public const string SeriesDatePlayed = "SeriesDatePlayed";
|
2013-02-20 20:33:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|