aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/ExtraType.cs
blob: 66da80d96b2ceabdcf98cc18721739968c50a302 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma warning disable CS1591

namespace MediaBrowser.Model.Entities
{
    public enum ExtraType
    {
        Unknown = 0,
        Clip = 1,
        Trailer = 2,
        BehindTheScenes = 3,
        DeletedScene = 4,
        Interview = 5,
        Scene = 6,
        Sample = 7,
        ThemeSong = 8,
        ThemeVideo = 9,
        Featurette = 10,
        Short = 11
    }
}