mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-28 02:21:00 +01:00
Pushing missing changes
This commit is contained in:
42
MediaBrowser.Model/DTO/ItemSortBy.cs
Normal file
42
MediaBrowser.Model/DTO/ItemSortBy.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
|
||||
namespace MediaBrowser.Model.DTO
|
||||
{
|
||||
/// <summary>
|
||||
/// Enum ItemSortBy
|
||||
/// </summary>
|
||||
public enum ItemSortBy
|
||||
{
|
||||
/// <summary>
|
||||
/// The album
|
||||
/// </summary>
|
||||
Album,
|
||||
/// <summary>
|
||||
/// The album artist
|
||||
/// </summary>
|
||||
AlbumArtist,
|
||||
/// <summary>
|
||||
/// The artist
|
||||
/// </summary>
|
||||
Artist,
|
||||
/// <summary>
|
||||
/// The date created
|
||||
/// </summary>
|
||||
DateCreated,
|
||||
/// <summary>
|
||||
/// The date played
|
||||
/// </summary>
|
||||
DatePlayed,
|
||||
/// <summary>
|
||||
/// The premiere date
|
||||
/// </summary>
|
||||
PremiereDate,
|
||||
/// <summary>
|
||||
/// The sort name
|
||||
/// </summary>
|
||||
SortName,
|
||||
/// <summary>
|
||||
/// The random
|
||||
/// </summary>
|
||||
Random
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user