2025-05-06 06:45:49 +00:00
|
|
|
|
using Volo.Abp.Settings;
|
|
|
|
|
|
|
2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Notifications.Settings;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
|
|
|
|
|
public class NotificationSettingDefinitionProvider : SettingDefinitionProvider
|
|
|
|
|
|
{
|
|
|
|
|
|
public override void Define(ISettingDefinitionContext context)
|
|
|
|
|
|
{
|
|
|
|
|
|
/* Define module settings here.
|
|
|
|
|
|
* Use names from NotificationSettings class.
|
|
|
|
|
|
*/
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|