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

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