2020-02-04 00:49:27 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
namespace MediaBrowser.Model.Entities
|
|
|
|
{
|
|
|
|
public enum ExtraType
|
|
|
|
{
|
2020-04-01 16:10:29 +00:00
|
|
|
Unknown = 0,
|
2018-12-27 23:27:57 +00:00
|
|
|
Clip = 1,
|
|
|
|
Trailer = 2,
|
|
|
|
BehindTheScenes = 3,
|
|
|
|
DeletedScene = 4,
|
|
|
|
Interview = 5,
|
|
|
|
Scene = 6,
|
|
|
|
Sample = 7,
|
|
|
|
ThemeSong = 8,
|
2022-10-28 01:01:04 +00:00
|
|
|
ThemeVideo = 9,
|
|
|
|
Featurette = 10,
|
|
|
|
Short = 11
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|