09e8a7e62c
Change rules for Featurettes and Shorts so they don't both get classed as ExtraType.Clip. Fix test that these changes break
21 lines
380 B
C#
21 lines
380 B
C#
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
{
|
|
public enum ExtraType
|
|
{
|
|
Unknown = 0,
|
|
Clip = 1,
|
|
Trailer = 2,
|
|
BehindTheScenes = 3,
|
|
DeletedScene = 4,
|
|
Interview = 5,
|
|
Scene = 6,
|
|
Sample = 7,
|
|
ThemeSong = 8,
|
|
ThemeVideo = 9,
|
|
Featurette = 10,
|
|
Short = 11
|
|
}
|
|
}
|