jellyfin/MediaBrowser.Controller/Resolvers/ResolverPriority.cs
Cody Robibero 820c75c833 Merge pull request #7519 from nielsvanvelzen/resolverpriority-plugin2
(cherry picked from commit 1d585146d6)
Signed-off-by: crobibero <cody@robibe.ro>
2022-04-07 12:54:57 -04:00

44 lines
845 B
C#

namespace MediaBrowser.Controller.Resolvers
{
/// <summary>
/// Enum ResolverPriority.
/// </summary>
public enum ResolverPriority
{
/// <summary>
/// The highest priority. Used by plugins to bypass the default server resolvers.
/// </summary>
Plugin = 0,
/// <summary>
/// The first.
/// </summary>
First = 1,
/// <summary>
/// The second.
/// </summary>
Second = 2,
/// <summary>
/// The third.
/// </summary>
Third = 3,
/// <summary>
/// The Fourth.
/// </summary>
Fourth = 4,
/// <summary>
/// The Fifth.
/// </summary>
Fifth = 5,
/// <summary>
/// The last.
/// </summary>
Last = 6
}
}