aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/CollectionTypeOptions.cs
blob: fc4cfdd66c1c5ac07ff3b5dda24ece2f2694d29d (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
#pragma warning disable SA1300 // Lowercase required for backwards compat.

namespace MediaBrowser.Model.Entities;

/// <summary>
/// The collection type options.
/// </summary>
public enum CollectionTypeOptions
{
    /// <summary>
    /// Movies.
    /// </summary>
    movies = 0,

    /// <summary>
    /// TV Shows.
    /// </summary>
    tvshows = 1,

    /// <summary>
    /// Music.
    /// </summary>
    music = 2,

    /// <summary>
    /// Music Videos.
    /// </summary>
    musicvideos = 3,

    /// <summary>
    /// Home Videos (and Photos).
    /// </summary>
    homevideos = 4,

    /// <summary>
    /// Box Sets.
    /// </summary>
    boxsets = 5,

    /// <summary>
    /// Books.
    /// </summary>
    books = 6,

    /// <summary>
    /// Mixed Movies and TV Shows.
    /// </summary>
    mixed = 7
}