using Abp.Collections; namespace Abp.Application.Features { /// /// Internal implementation for . /// internal class FeatureConfiguration : IFeatureConfiguration { /// /// Reference to the feature providers. /// public ITypeList Providers { get; } /// /// Initializes a new instance of the class. /// public FeatureConfiguration() { Providers = new TypeList(); } } }