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.
27 lines
523 B
27 lines
523 B
6 years ago
|
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
|
||
|
}
|
||
|
}
|