jellyfin/MediaBrowser.Controller/Lyrics/ILyricManager.cs

25 lines
725 B
C#
Raw Normal View History

2022-09-22 14:13:53 +02:00
using System.Threading.Tasks;
2022-09-16 02:49:25 +02:00
using MediaBrowser.Controller.Entities;
2022-09-17 23:37:38 +02:00
namespace MediaBrowser.Controller.Lyrics;
/// <summary>
/// Interface ILyricManager.
/// </summary>
public interface ILyricManager
2022-09-16 02:49:25 +02:00
{
2022-09-17 23:37:38 +02:00
/// <summary>
/// Gets the lyrics.
/// </summary>
/// <param name="item">The media item.</param>
2022-09-22 14:13:53 +02:00
/// <returns>A task representing found lyrics the passed item.</returns>
Task<LyricResponse?> GetLyrics(BaseItem item);
2022-09-16 02:49:25 +02:00
2022-09-17 23:37:38 +02:00
/// <summary>
/// Checks if requested item has a matching local lyric file.
/// </summary>
/// <param name="item">The media item.</param>
/// <returns>True if item has a matching lyric file; otherwise false.</returns>
bool HasLyricFile(BaseItem item);
2022-09-16 02:49:25 +02:00
}