using System.Collections.Generic; using MediaBrowser.Controller.Entities; namespace MediaBrowser.Controller.Lyrics { /// /// Interface ILyricsProvider. /// public interface ILyricsProvider { /// /// Gets the supported media types for this provider. /// /// The supported media types. IEnumerable SupportedMediaTypes { get; } /// /// Gets the lyrics. /// /// The item to to process. /// Task{LyricResponse}. LyricResponse? GetLyrics(BaseItem item); } }