namespace MediaBrowser.Controller.Providers
{
    public enum ImageRefreshMode
    {
        /// 
        /// The none
        /// 
        None = 0,
        /// 
        /// The default
        /// 
        Default = 1,
        /// 
        /// Existing images will be validated
        /// 
        ValidationOnly = 2,
        /// 
        /// All providers will be executed to search for new metadata
        /// 
        FullRefresh = 3
    }
}