IModuleConfigurations.cs 455 B

1234567891011121314
  1. namespace Abp.Configuration.Startup
  2. {
  3. /// <summary>
  4. /// Used to provide a way to configure modules.
  5. /// Create entension methods to this class to be used over <see cref="IAbpStartupConfiguration.Modules"/> object.
  6. /// </summary>
  7. public interface IModuleConfigurations
  8. {
  9. /// <summary>
  10. /// Gets the ABP configuration object.
  11. /// </summary>
  12. IAbpStartupConfiguration AbpConfiguration { get; }
  13. }
  14. }