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.
28 lines
527 B
28 lines
527 B
|
|
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,
|
|
Fourth = 4,
|
|
/// <summary>
|
|
/// The last
|
|
/// </summary>
|
|
Last = 5
|
|
}
|
|
}
|