820c75c833
(cherry picked from commit 1d585146d6
)
Signed-off-by: crobibero <cody@robibe.ro>
44 lines
845 B
C#
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
|
|
}
|
|
}
|