aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/ImageType.cs
blob: aaae8dda3722cd224be07f963c7a5c44924d3617 (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
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Enum ImageType
    /// </summary>
    public enum ImageType
    {
        /// <summary>
        /// The primary
        /// </summary>
        Primary,
        /// <summary>
        /// The art
        /// </summary>
        Art,
        /// <summary>
        /// The backdrop
        /// </summary>
        Backdrop,
        /// <summary>
        /// The banner
        /// </summary>
        Banner,
        /// <summary>
        /// The logo
        /// </summary>
        Logo,
        /// <summary>
        /// The thumb
        /// </summary>
        Thumb,
        /// <summary>
        /// The disc
        /// </summary>
        Disc,
        /// <summary>
        /// The box
        /// </summary>
        Box,
        /// <summary>
        /// The screenshot
        /// </summary>
        Screenshot,
        /// <summary>
        /// The menu
        /// </summary>
        Menu,
        /// <summary>
        /// The chapter image
        /// </summary>
        ChapterImage
    }
}