using Abp.Dependency; namespace Abp.Application.Features { /// /// This class should be inherited in order to provide s. /// public abstract class FeatureProvider : ITransientDependency { /// /// Used to set s. /// /// Feature definition context public abstract void SetFeatures(IFeatureDefinitionContext context); } }