12 lines
346 B
C#
12 lines
346 B
C#
using Volo.Abp.Settings;
|
|
|
|
namespace KonSoft.Payment.Settings;
|
|
|
|
public class PaymentSettingDefinitionProvider : SettingDefinitionProvider
|
|
{
|
|
public override void Define(ISettingDefinitionContext context)
|
|
{
|
|
//Define your own settings here. Example:
|
|
//context.Add(new SettingDefinition(PaymentSettings.MySetting1));
|
|
}
|
|
} |