repo creation with initial code after cloning public repo

This commit is contained in:
2026-02-19 07:36:25 -05:00
commit 460884fea3
2860 changed files with 650825 additions and 0 deletions
@@ -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
}
}