namespace Jellyfin.Data.Enums;
///
/// These represent sort orders.
///
public enum ItemSortBy
{
///
/// Default sort order.
///
Default = 0,
///
/// The aired episode order.
///
AiredEpisodeOrder = 1,
///
/// The album.
///
Album = 2,
///
/// The album artist.
///
AlbumArtist = 3,
///
/// The artist.
///
Artist = 4,
///
/// The date created.
///
DateCreated = 5,
///
/// The official rating.
///
OfficialRating = 6,
///
/// The date played.
///
DatePlayed = 7,
///
/// The premiere date.
///
PremiereDate = 8,
///
/// The start date.
///
StartDate = 9,
///
/// The sort name.
///
SortName = 10,
///
/// The name.
///
Name = 11,
///
/// The random.
///
Random = 12,
///
/// The runtime.
///
Runtime = 13,
///
/// The community rating.
///
CommunityRating = 14,
///
/// The production year.
///
ProductionYear = 15,
///
/// The play count.
///
PlayCount = 16,
///
/// The critic rating.
///
CriticRating = 17,
///
/// The IsFolder boolean.
///
IsFolder = 18,
///
/// The IsUnplayed boolean.
///
IsUnplayed = 19,
///
/// The IsPlayed boolean.
///
IsPlayed = 20,
///
/// The series sort.
///
SeriesSortName = 21,
///
/// The video bitrate.
///
VideoBitRate = 22,
///
/// The air time.
///
AirTime = 23,
///
/// The studio.
///
Studio = 24,
///
/// The IsFavouriteOrLiked boolean.
///
IsFavoriteOrLiked = 25,
///
/// The last content added date.
///
DateLastContentAdded = 26,
///
/// The series last played date.
///
SeriesDatePlayed = 27,
///
/// The parent index number.
///
ParentIndexNumber = 28,
///
/// The index number.
///
IndexNumber = 29,
///
/// The similarity score.
///
SimilarityScore = 30,
///
/// The search score.
///
SearchScore = 31,
}