#pragma warning disable CS1591
namespace MediaBrowser.Controller.Providers
{
public enum MetadataRefreshMode
{
///
/// The none.
///
None = 0,
///
/// The validation only.
///
ValidationOnly = 1,
///
/// Providers will be executed based on default rules.
///
Default = 2,
///
/// All providers will be executed to search for new metadata.
///
FullRefresh = 3
}
}