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