namespace MediaBrowser.Common.Configuration
{
///
/// Identifies which locally cached copy of the shared configuration a
/// refers to.
///
public enum ConfigurationInvalidationScope
{
///
/// The system configuration cached by the configuration manager.
///
SystemConfiguration = 0,
///
/// A single named configuration, identified by its key.
///
NamedConfiguration = 1,
///
/// The library options of a single collection folder, identified by its path.
///
LibraryOptions = 2,
///
/// The library options of every collection folder, for changes to the library structure itself.
///
AllLibraryOptions = 3
}
}