mirror of https://github.com/abpframework/abp
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.
18 lines
497 B
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>();
|
|
}
|
|
}
|
|
} |