using System.Collections.Generic; using MediaBrowser.Controller.Entities; namespace MediaBrowser.Controller.Lyrics { /// /// Interface ILyricsProvider. /// public interface ILyricProvider { /// /// Gets a value indicating the provider name. /// string Name { get; } /// /// Gets the supported media types for this provider. /// /// The supported media types. IEnumerable SupportedMediaTypes { get; } /// /// Gets the lyrics. /// /// The media item. /// If found, returns lyrics for passed item; otherwise, null. LyricResponse? GetLyrics(BaseItem item); } }