Open Source Web Application Framework for ASP.NET Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
405 B

namespace Volo.Abp.Features;
public class TestFeatureDefinitionProvider : FeatureDefinitionProvider
{
public override void Define(IFeatureDefinitionContext context)
{
var group = context.AddGroup("Test Group");
group.AddFeature("BooleanTestFeature1");
group.AddFeature("BooleanTestFeature2");
group.AddFeature("IntegerTestFeature1", defaultValue: "1");
}
}