//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace MediaBrowser.Common.Configuration
{
using System.Collections.Generic;
///
/// Provides an interface to retrieve a configuration store. Classes with this interface are scanned for at
/// application start to dynamically register configuration for various modules/plugins.
///
public interface IConfigurationFactory
{
///
/// Get the configuration store for this module.
///
/// The configuration store.
IEnumerable GetConfigurations();
}
}