mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
25 lines
527 B
C#
25 lines
527 B
C#
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
|
|
}
|
|
} |