mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 08:11:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			481 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			481 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
 | |
| namespace MediaBrowser.Model.Entities
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Enum MetadataProviders
 | |
|     /// </summary>
 | |
|     public enum MetadataProviders
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// The imdb
 | |
|         /// </summary>
 | |
|         Imdb,
 | |
|         /// <summary>
 | |
|         /// The TMDB
 | |
|         /// </summary>
 | |
|         Tmdb,
 | |
|         /// <summary>
 | |
|         /// The TVDB
 | |
|         /// </summary>
 | |
|         Tvdb,
 | |
|         /// <summary>
 | |
|         /// The tvcom
 | |
|         /// </summary>
 | |
|         Tvcom
 | |
|     }
 | |
| }
 |