using System.Collections.Generic;
namespace Abp.Application.Features
{
///
/// Feature manager.
///
public interface IFeatureManager
{
///
/// Gets the by a specified name.
///
/// Unique name of the feature.
Feature Get(string name);
///
/// Gets the by a specified name or returns null if it can not be found.
///
/// The name.
Feature GetOrNull(string name);
///
/// Gets all s.
///
///
IReadOnlyList GetAll();
}
}