aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/ImageRefreshMode.cs
blob: 73ef4b8cdace6b3819e083086cb753bba641b8b9 (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
namespace MediaBrowser.Controller.Providers
{
    public enum ImageRefreshMode
    {
        /// <summary>
        /// The none
        /// </summary>
        None = 0,

        /// <summary>
        /// Existing images will be validated
        /// </summary>
        ValidationOnly = 1,

        /// <summary>
        /// The default
        /// </summary>
        Default = 2,

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