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.
15 lines
569 B
15 lines
569 B
using Volo.Abp.Settings;
|
|
|
|
namespace Volo.Abp.SettingManagement
|
|
{
|
|
public class TestSettingDefinitionProvider : SettingDefinitionProvider
|
|
{
|
|
public override void Define(ISettingDefinitionContext context)
|
|
{
|
|
context.Add(new SettingDefinition("MySetting1"));
|
|
context.Add(new SettingDefinition("MySetting2"));
|
|
context.Add(new SettingDefinition("MySettingWithoutInherit", isInherited: false));
|
|
context.Add(new SettingDefinition("SettingNotSetInStore", defaultValue: "default-value"));
|
|
}
|
|
}
|
|
} |