diff options
Diffstat (limited to 'MediaBrowser.Controller/Lyrics/ILyricProvider.cs')
| -rw-r--r-- | MediaBrowser.Controller/Lyrics/ILyricProvider.cs | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/MediaBrowser.Controller/Lyrics/ILyricProvider.cs b/MediaBrowser.Controller/Lyrics/ILyricProvider.cs index 5e677ab26..1b52de255 100644 --- a/MediaBrowser.Controller/Lyrics/ILyricProvider.cs +++ b/MediaBrowser.Controller/Lyrics/ILyricProvider.cs @@ -1,29 +1,28 @@ using System.Collections.Generic; using MediaBrowser.Controller.Entities; -namespace MediaBrowser.Controller.Lyrics +namespace MediaBrowser.Controller.Lyrics; + +/// <summary> +/// Interface ILyricsProvider. +/// </summary> +public interface ILyricProvider { /// <summary> - /// Interface ILyricsProvider. + /// Gets a value indicating the provider name. /// </summary> - public interface ILyricProvider - { - /// <summary> - /// Gets a value indicating the provider name. - /// </summary> - string Name { get; } + string Name { get; } - /// <summary> - /// Gets the supported media types for this provider. - /// </summary> - /// <value>The supported media types.</value> - IEnumerable<string> SupportedMediaTypes { get; } + /// <summary> + /// Gets the supported media types for this provider. + /// </summary> + /// <value>The supported media types.</value> + IEnumerable<string> SupportedMediaTypes { get; } - /// <summary> - /// Gets the lyrics. - /// </summary> - /// <param name="item">The media item.</param> - /// <returns>If found, returns lyrics for passed item; otherwise, null.</returns> - LyricResponse? GetLyrics(BaseItem item); - } + /// <summary> + /// Gets the lyrics. + /// </summary> + /// <param name="item">The media item.</param> + /// <returns>If found, returns lyrics for passed item; otherwise, null.</returns> + LyricResponse? GetLyrics(BaseItem item); } |
