aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Lyrics/ILyricProvider.cs
diff options
context:
space:
mode:
author1hitsong <3330318+1hitsong@users.noreply.github.com>2022-09-17 17:37:38 -0400
committer1hitsong <3330318+1hitsong@users.noreply.github.com>2022-09-17 17:37:38 -0400
commitc65819221d9a84ec0ae69a243fdcb17bce7aa65f (patch)
tree5980490c8c2be7c5ac5f7d7f3ab0e681245ddcf2 /MediaBrowser.Controller/Lyrics/ILyricProvider.cs
parent29932466a9e75f9cf54332be9bb9d39dce238d07 (diff)
Code cleanups. Remove pragma commands
Diffstat (limited to 'MediaBrowser.Controller/Lyrics/ILyricProvider.cs')
-rw-r--r--MediaBrowser.Controller/Lyrics/ILyricProvider.cs39
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);
}