25 lines
445 B
C#
25 lines
445 B
C#
|
|
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
|
|
}
|
|
|
|
public enum TrailerType
|
|
{
|
|
ComingSoonToTheaters = 1,
|
|
ComingSoonToDvd = 2,
|
|
ComingSoonToStreaming = 3,
|
|
Archive = 4
|
|
}
|
|
}
|