using System.Threading.Tasks; using MediaBrowser.Controller.Entities; namespace MediaBrowser.Controller.Lyrics; /// /// Interface ILyricManager. /// public interface ILyricManager { /// /// Gets the lyrics. /// /// The media item. /// A task representing found lyrics the passed item. Task GetLyrics(BaseItem item); /// /// Checks if requested item has a matching local lyric file. /// /// The media item. /// True if item has a matching lyric file; otherwise false. bool HasLyricFile(BaseItem item); }