namespace MediaBrowser.Model.Querying
{
    /// 
    /// These represent sort orders that are known by the core
    /// 
    public static class ItemSortBy
    {
        /// 
        /// The album
        /// 
        public const string Album = "Album";
        /// 
        /// The album artist
        /// 
        public const string AlbumArtist = "AlbumArtist";
        /// 
        /// The artist
        /// 
        public const string Artist = "Artist";
        /// 
        /// The budget
        /// 
        public const string Budget = "Budget";
        /// 
        /// The revenue
        /// 
        public const string Revenue = "Revenue";
        /// 
        /// The date created
        /// 
        public const string DateCreated = "DateCreated";
        /// 
        /// The date played
        /// 
        public const string DatePlayed = "DatePlayed";
        /// 
        /// The premiere date
        /// 
        public const string PremiereDate = "PremiereDate";
        /// 
        /// The sort name
        /// 
        public const string SortName = "SortName";
        /// 
        /// 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";
    }
}