mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			727 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			727 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Controller.Entities;
 | 
						|
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Library
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Class BaseIntroProvider
 | 
						|
    /// </summary>
 | 
						|
    public interface IIntroProvider
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the intros.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="item">The item.</param>
 | 
						|
        /// <param name="user">The user.</param>
 | 
						|
        /// <returns>IEnumerable{System.String}.</returns>
 | 
						|
        IEnumerable<IntroInfo> GetIntros(BaseItem item, User user);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets all intro files.
 | 
						|
        /// </summary>
 | 
						|
        /// <returns>IEnumerable{System.String}.</returns>
 | 
						|
        IEnumerable<string> GetAllIntroFiles();
 | 
						|
    }
 | 
						|
}
 |