namespace MediaBrowser.Controller.Resolvers
{
///
/// Enum ResolverPriority.
///
public enum ResolverPriority
{
///
/// The first.
///
First = 1,
///
/// The second.
///
Second = 2,
///
/// The third.
///
Third = 3,
///
/// The Fourth.
///
Fourth = 4,
///
/// The last.
///
Last = 5
}
}