namespace MediaBrowser.Controller.Providers
{
    /// 
    /// Determines when a provider should execute, relative to others
    /// 
    public enum MetadataProviderPriority
    {
        // Run this provider at the beginning
        /// 
        /// The first
        /// 
        First = 1,
        // Run this provider after all first priority providers
        /// 
        /// The second
        /// 
        Second = 2,
        // Run this provider after all second priority providers
        /// 
        /// The third
        /// 
        Third = 3,
        /// 
        /// The fourth
        /// 
        Fourth = 4,
        Fifth = 5,
        // Run this provider last
        /// 
        /// The last
        /// 
        Last = 999
    }
}