aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/MetadataRefreshMode.cs
blob: 920e3da5b0fb0fb67c716da89b8317df1f6dd14c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#pragma warning disable CS1591

namespace MediaBrowser.Controller.Providers
{
    public enum MetadataRefreshMode
    {
        /// <summary>
        /// The none.
        /// </summary>
        None = 0,

        /// <summary>
        /// The validation only.
        /// </summary>
        ValidationOnly = 1,

        /// <summary>
        /// Providers will be executed based on default rules.
        /// </summary>
        Default = 2,

        /// <summary>
        /// All providers will be executed to search for new metadata.
        /// </summary>
        FullRefresh = 3
    }
}