jellyfin-server/MediaBrowser.Model/Entities/ExtraType.cs

25 lines
445 B
C#
Raw Normal View History

2014-09-22 21:56:54 +00:00

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
}
2014-09-28 15:27:26 +00:00
public enum TrailerType
{
ComingSoonToTheaters = 1,
ComingSoonToDvd = 2,
ComingSoonToStreaming = 3,
Archive = 4
}
2014-09-22 21:56:54 +00:00
}