mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			291 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			291 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#pragma warning disable CS1591
 | 
						|
 | 
						|
namespace MediaBrowser.Model.Entities
 | 
						|
{
 | 
						|
    public enum CollectionTypeOptions
 | 
						|
    {
 | 
						|
        Movies = 0,
 | 
						|
        TvShows = 1,
 | 
						|
        Music = 2,
 | 
						|
        MusicVideos = 3,
 | 
						|
        HomeVideos = 4,
 | 
						|
        BoxSets = 5,
 | 
						|
        Books = 6,
 | 
						|
        Mixed = 7
 | 
						|
    }
 | 
						|
}
 |