mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			286 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			286 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
 | 
						|
    }
 | 
						|
}
 |