Bond-009 cc6afb0971 Merge pull request #4968 from ianjazz246/fix-music-album-display
Fix library with music directly under artist folder

(cherry picked from commit 7758c61ea8e0863198509a8b75208683eb61812f)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
2021-01-23 15:37:25 -05:00

39 lines
689 B
C#

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
}
}