namespace MediaBrowser.Model.Querying
{
    /// 
    /// These represent sort orders that are known by the core.
    /// 
    public static class ItemSortBy
    {
        /// 
        /// The aired episode order.
        /// 
        public const string AiredEpisodeOrder = "AiredEpisodeOrder";
        /// 
        /// The album.
        /// 
        public const string Album = "Album";
        /// 
        /// The album artist.
        /// 
        public const string AlbumArtist = "AlbumArtist";
        /// 
        /// The artist.
        /// 
        public const string Artist = "Artist";
        /// 
        /// The date created.
        /// 
        public const string DateCreated = "DateCreated";
        /// 
        /// The official rating.
        /// 
        public const string OfficialRating = "OfficialRating";
        /// 
        /// The date played.
        /// 
        public const string DatePlayed = "DatePlayed";
        /// 
        /// The premiere date.
        /// 
        public const string PremiereDate = "PremiereDate";
        /// 
        /// The start date.
        /// 
        public const string StartDate = "StartDate";
        /// 
        /// The sort name.
        /// 
        public const string SortName = "SortName";
        /// 
        /// The name.
        /// 
        public const string Name = "Name";
        /// 
        /// The random.
        /// 
        public const string Random = "Random";
        /// 
        /// The runtime.
        /// 
        public const string Runtime = "Runtime";
        /// 
        /// The community rating.
        /// 
        public const string CommunityRating = "CommunityRating";
        /// 
        /// The production year.
        /// 
        public const string ProductionYear = "ProductionYear";
        /// 
        /// The play count.
        /// 
        public const string PlayCount = "PlayCount";
        /// 
        /// The critic rating.
        /// 
        public const string CriticRating = "CriticRating";
        /// 
        /// The IsFolder boolean.
        /// 
        public const string IsFolder = "IsFolder";
        /// 
        /// The IsUnplayed boolean.
        /// 
        public const string IsUnplayed = "IsUnplayed";
        /// 
        /// The IsPlayed boolean.
        /// 
        public const string IsPlayed = "IsPlayed";
        /// 
        /// The series sort.
        /// 
        public const string SeriesSortName = "SeriesSortName";
        /// 
        /// The video bitrate.
        /// 
        public const string VideoBitRate = "VideoBitRate";
        /// 
        /// The air time.
        /// 
        public const string AirTime = "AirTime";
        /// 
        /// The studio.
        /// 
        public const string Studio = "Studio";
        /// 
        /// The IsFavouriteOrLiked boolean.
        /// 
        public const string IsFavoriteOrLiked = "IsFavoriteOrLiked";
        /// 
        /// The last content added date.
        /// 
        public const string DateLastContentAdded = "DateLastContentAdded";
        /// 
        /// The series last played date.
        /// 
        public const string SeriesDatePlayed = "SeriesDatePlayed";
        /// 
        /// The parent index number.
        /// 
        public const string ParentIndexNumber = "ParentIndexNumber";
        /// 
        /// The index number.
        /// 
        public const string IndexNumber = "IndexNumber";
        /// 
        /// The similarity score.
        /// 
        public const string SimilarityScore = "SimilarityScore";
    }
}