#pragma warning disable CS1591 using MediaBrowser.Controller.Entities; namespace MediaBrowser.Controller.Lyrics { public interface ILyricManager { /// /// Gets the lyrics. /// /// The media item. /// Lyrics for passed item. LyricResponse 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); } }