aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/ViewType.cs
blob: 595429ab1bdc703c9437b97a62b0e9e11040f688 (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
namespace Jellyfin.Data.Enums
{
    /// <summary>
    /// An enum representing the type of view for a library or collection.
    /// </summary>
    public enum ViewType
    {
        /// <summary>
        /// Shows banners.
        /// </summary>
        Banner = 0,

        /// <summary>
        /// Shows a list of content.
        /// </summary>
        List = 1,

        /// <summary>
        /// Shows poster artwork.
        /// </summary>
        Poster = 2,

        /// <summary>
        /// Shows poster artwork with a card containing the name and year.
        /// </summary>
        PosterCard = 3,

        /// <summary>
        /// Shows a thumbnail.
        /// </summary>
        Thumb = 4,

        /// <summary>
        /// Shows a thumbnail with a card containing the name and year.
        /// </summary>
        ThumbCard = 5
    }
}