repo creation with initial code after cloning public repo
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user