13 lines
341 B
C#
13 lines
341 B
C#
|
using Volo.Abp.Settings;
|
|||
|
|
|||
|
namespace Syc.Basic.Web.WMS.Settings;
|
|||
|
|
|||
|
public class WMSSettingDefinitionProvider : SettingDefinitionProvider
|
|||
|
{
|
|||
|
public override void Define(ISettingDefinitionContext context)
|
|||
|
{
|
|||
|
//Define your own settings here. Example:
|
|||
|
//context.Add(new SettingDefinition(WMSSettings.MySetting1));
|
|||
|
}
|
|||
|
}
|