aboutsummaryrefslogtreecommitdiff
path: root/src/Jellyfin.Database/Jellyfin.Database.Implementations/Entities/BaseItemExtraType.cs
blob: 46a59f7903bbe5cb437ee3756c8c527a88592961 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma warning disable CS1591
namespace Jellyfin.Database.Implementations.Entities;

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