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.
abp/modules/feature-management/src/Volo.Abp.FeatureManagement..../Volo/Abp/FeatureManagement/FeatureManagementOptions.cs

18 lines
497 B

using System.Collections.Generic;
using Volo.Abp.Collections;
namespace Volo.Abp.FeatureManagement
{
public class FeatureManagementOptions
{
public ITypeList<IFeatureManagementProvider> Providers { get; }
public Dictionary<string, string> ProviderPolicies { get; }
public FeatureManagementOptions()
{
Providers = new TypeList<IFeatureManagementProvider>();
ProviderPolicies = new Dictionary<string, string>();
}
}
}