jellyfin/MediaBrowser.Controller/Providers/MetadataProviderPriority.cs

41 lines
878 B
C#
Raw Normal View History


namespace MediaBrowser.Controller.Providers
{
/// <summary>
/// Determines when a provider should execute, relative to others
/// </summary>
public enum MetadataProviderPriority
{
// Run this provider at the beginning
/// <summary>
/// The first
/// </summary>
First = 1,
// Run this provider after all first priority providers
/// <summary>
/// The second
/// </summary>
Second = 2,
// Run this provider after all second priority providers
/// <summary>
/// The third
/// </summary>
Third = 3,
2013-05-13 00:57:51 +02:00
/// <summary>
/// The fourth
/// </summary>
Fourth = 4,
2013-08-18 03:23:37 +02:00
Fifth = 5,
// Run this provider last
/// <summary>
/// The last
/// </summary>
2013-08-18 16:00:32 +02:00
Last = 999
}
}