aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/IndexingKind.cs
blob: 3967712b03dd74208824a6ee97610a66b167bf18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace Jellyfin.Data.Enums
{
    /// <summary>
    /// An enum representing a type of indexing in a user's display preferences.
    /// </summary>
    public enum IndexingKind
    {
        /// <summary>
        /// Index by the premiere date.
        /// </summary>
        PremiereDate = 0,

        /// <summary>
        /// Index by the production year.
        /// </summary>
        ProductionYear = 1,

        /// <summary>
        /// Index by the community rating.
        /// </summary>
        CommunityRating = 2
    }
}