using System.Collections.Generic; using JetBrains.Annotations; namespace Volo.Abp.Features { public interface IFeatureDefinitionManager { [NotNull] FeatureDefinition Get([NotNull] string name); IReadOnlyList GetAll(); FeatureDefinition GetOrNull(string name); IReadOnlyList GetGroups(); } }