aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Querying/ItemSortBy.cs
blob: c85ed8780aed76a6cd785b5f08998139fb0b87d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
namespace MediaBrowser.Model.Querying
{
    /// <summary>
    /// These represent sort orders that are known by the core
    /// </summary>
    public static class ItemSortBy
    {
        /// <summary>
        /// The album
        /// </summary>
        public const string Album = "Album";
        /// <summary>
        /// The album artist
        /// </summary>
        public const string AlbumArtist = "AlbumArtist";
        /// <summary>
        /// The artist
        /// </summary>
        public const string Artist = "Artist";
        /// <summary>
        /// The date created
        /// </summary>
        public const string DateCreated = "DateCreated";
        /// <summary>
        /// The date played
        /// </summary>
        public const string DatePlayed = "DatePlayed";
        /// <summary>
        /// The premiere date
        /// </summary>
        public const string PremiereDate = "PremiereDate";
        /// <summary>
        /// The sort name
        /// </summary>
        public const string SortName = "SortName";
        /// <summary>
        /// The random
        /// </summary>
        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";
        /// <summary>
        /// The play count
        /// </summary>
        public const string PlayCount = "PlayCount";
    }
}