diff options
| author | 1hitsong <3330318+1hitsong@users.noreply.github.com> | 2022-09-18 13:13:01 -0400 |
|---|---|---|
| committer | 1hitsong <3330318+1hitsong@users.noreply.github.com> | 2022-09-18 13:13:01 -0400 |
| commit | f737581d49dd9f6ab0c68269f8be073df27fb0ba (patch) | |
| tree | 453f48e6e63dd4604827692b0ecf2d096add95bb /MediaBrowser.Controller/Lyrics | |
| parent | 10b07ed9a582a06d947f6fb7ec2ab9fd94215587 (diff) | |
Use providers in order of priority
Diffstat (limited to 'MediaBrowser.Controller/Lyrics')
| -rw-r--r-- | MediaBrowser.Controller/Lyrics/ILyricProvider.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Lyrics/ILyricProvider.cs b/MediaBrowser.Controller/Lyrics/ILyricProvider.cs index 1b52de255..651fe507f 100644 --- a/MediaBrowser.Controller/Lyrics/ILyricProvider.cs +++ b/MediaBrowser.Controller/Lyrics/ILyricProvider.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using MediaBrowser.Controller.Entities; +using MediaBrowser.Controller.Resolvers; namespace MediaBrowser.Controller.Lyrics; @@ -14,6 +15,12 @@ public interface ILyricProvider string Name { get; } /// <summary> + /// Gets the priority. + /// </summary> + /// <value>The priority.</value> + ResolverPriority Priority { get; } + + /// <summary> /// Gets the supported media types for this provider. /// </summary> /// <value>The supported media types.</value> |
