IFeatureConfiguration.cs 361 B

123456789101112131415
  1. using Abp.Collections;
  2. namespace Abp.Application.Features
  3. {
  4. /// <summary>
  5. /// Used to configure feature system.
  6. /// </summary>
  7. public interface IFeatureConfiguration
  8. {
  9. /// <summary>
  10. /// Used to add/remove <see cref="FeatureProvider"/>s.
  11. /// </summary>
  12. ITypeList<FeatureProvider> Providers { get; }
  13. }
  14. }