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.
|
|
|
namespace MediaBrowser.Controller.Resolvers
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Enum ResolverPriority.
|
|
|
|
/// </summary>
|
|
|
|
public enum ResolverPriority
|
|
|
|
{
|
|
|
|
/// <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
|
|
|
|
}
|
|
|
|
}
|