jellyfin/MediaBrowser.Model/Querying/ItemSortBy.cs

55 lines
1.5 KiB
C#
Raw Normal View History

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

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