You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Controller/Resolvers/ResolverPriority.cs

44 lines
845 B

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