jellyfin-server/MediaBrowser.Model/Querying/ItemSortBy.cs

59 lines
1.7 KiB
C#
Raw Normal View History

2013-02-21 01:33:05 +00:00

2013-03-10 05:36:39 +00:00
namespace MediaBrowser.Model.Querying
2013-02-21 01:33:05 +00:00
{
/// <summary>
2013-03-10 04:22:36 +00:00
/// These represent sort orders that are known by the core
2013-02-21 01:33:05 +00:00
/// </summary>
2013-03-10 04:22:36 +00:00
public static class ItemSortBy
2013-02-21 01:33:05 +00:00
{
/// <summary>
/// The album
/// </summary>
2013-03-10 04:22:36 +00:00
public const string Album = "Album";
2013-02-21 01:33:05 +00:00
/// <summary>
/// The album artist
/// </summary>
2013-03-10 04:22:36 +00:00
public const string AlbumArtist = "AlbumArtist";
2013-02-21 01:33:05 +00:00
/// <summary>
/// The artist
/// </summary>
2013-03-10 04:22:36 +00:00
public const string Artist = "Artist";
2013-02-21 01:33:05 +00:00
/// <summary>
/// The date created
/// </summary>
2013-03-10 04:22:36 +00:00
public const string DateCreated = "DateCreated";
2013-02-21 01:33:05 +00:00
/// <summary>
/// The date played
/// </summary>
2013-03-10 04:22:36 +00:00
public const string DatePlayed = "DatePlayed";
2013-02-21 01:33:05 +00:00
/// <summary>
/// The premiere date
/// </summary>
2013-03-10 04:22:36 +00:00
public const string PremiereDate = "PremiereDate";
2013-02-21 01:33:05 +00:00
/// <summary>
/// The sort name
/// </summary>
2013-03-10 04:22:36 +00:00
public const string SortName = "SortName";
2013-02-21 01:33:05 +00:00
/// <summary>
/// The random
/// </summary>
2013-03-10 04:22:36 +00: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 14:57:30 +00:00
/// <summary>
/// The play count
/// </summary>
public const string PlayCount = "PlayCount";
2013-02-21 01:33:05 +00:00
}
}