mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 08:26:37 +08:00
23 lines
508 B
C#
23 lines
508 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using Volo.Abp.Settings;
|
|||
|
|
|
|||
|
|
namespace Yi.Abp.Domain.Shared.Settings
|
|||
|
|
{
|
|||
|
|
internal class TestSettingProvider : SettingDefinitionProvider
|
|||
|
|
{
|
|||
|
|
public override void Define(ISettingDefinitionContext context)
|
|||
|
|
{
|
|||
|
|
context.Add(
|
|||
|
|
new SettingDefinition("DDD","127.0.0.1"),
|
|||
|
|
new SettingDefinition("TTT", "127.0.0.1")
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|