blob: 6d49b55104b05057db7d23f7d53f1617fa51b5c4 (
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 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
}
}
|