Files

48 lines
991 B
C#

// <copyright file="ResolverPriority.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
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
}
}