aboutsummaryrefslogtreecommitdiff
path: root/src/Jellyfin.Database/Jellyfin.Database.Implementations/Enums/HomeSectionType.cs
blob: 6ba57e74d5a3696287adb94ee7e64d76ba33316f (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
namespace Jellyfin.Database.Implementations.Enums;

/// <summary>
/// An enum representing the different options for the home screen sections.
/// </summary>
public enum HomeSectionType
{
    /// <summary>
    /// None.
    /// </summary>
    None = 0,

    /// <summary>
    /// My Media.
    /// </summary>
    SmallLibraryTiles = 1,

    /// <summary>
    /// My Media Small.
    /// </summary>
    LibraryButtons = 2,

    /// <summary>
    /// Active Recordings.
    /// </summary>
    ActiveRecordings = 3,

    /// <summary>
    /// Continue Watching.
    /// </summary>
    Resume = 4,

    /// <summary>
    /// Continue Listening.
    /// </summary>
    ResumeAudio = 5,

    /// <summary>
    /// Latest Media.
    /// </summary>
    LatestMedia = 6,

    /// <summary>
    /// Next Up.
    /// </summary>
    NextUp = 7,

    /// <summary>
    /// Live TV.
    /// </summary>
    LiveTv = 8,

    /// <summary>
    /// Continue Reading.
    /// </summary>
    ResumeBook = 9
}