namespace Abp.Configuration.Startup
{
///
/// Used to provide a way to configure modules.
/// Create entension methods to this class to be used over object.
///
public interface IModuleConfigurations
{
///
/// Gets the ABP configuration object.
///
IAbpStartupConfiguration AbpConfiguration { get; }
}
}