mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 11:07:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			959 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			959 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Threading.Tasks;
 | 
						|
using MediaBrowser.Controller.Entities;
 | 
						|
using MediaBrowser.Controller.Resolvers;
 | 
						|
 | 
						|
namespace MediaBrowser.Providers.Lyric;
 | 
						|
 | 
						|
/// <summary>
 | 
						|
/// Interface ILyricsProvider.
 | 
						|
/// </summary>
 | 
						|
public interface ILyricProvider
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Gets a value indicating the provider name.
 | 
						|
    /// </summary>
 | 
						|
    string Name { get; }
 | 
						|
 | 
						|
    /// <summary>
 | 
						|
    /// Gets the priority.
 | 
						|
    /// </summary>
 | 
						|
    /// <value>The priority.</value>
 | 
						|
    ResolverPriority Priority { get; }
 | 
						|
 | 
						|
    /// <summary>
 | 
						|
    /// Checks if an item has lyrics available.
 | 
						|
    /// </summary>
 | 
						|
    /// <param name="item">The media item.</param>
 | 
						|
    /// <returns>Whether lyrics where found or not.</returns>
 | 
						|
    bool HasLyrics(BaseItem item);
 | 
						|
 | 
						|
    /// <summary>
 | 
						|
    /// Gets the lyrics.
 | 
						|
    /// </summary>
 | 
						|
    /// <param name="item">The media item.</param>
 | 
						|
    /// <returns>A task representing found lyrics.</returns>
 | 
						|
    Task<LyricFile?> GetLyrics(BaseItem item);
 | 
						|
}
 |