14 lines
337 B
C#
14 lines
337 B
C#
|
|
using Volo.Abp.Settings;
|
|||
|
|
|
|||
|
|
namespace Kurs.Notifications.Settings;
|
|||
|
|
|
|||
|
|
public class NotificationSettingDefinitionProvider : SettingDefinitionProvider
|
|||
|
|
{
|
|||
|
|
public override void Define(ISettingDefinitionContext context)
|
|||
|
|
{
|
|||
|
|
/* Define module settings here.
|
|||
|
|
* Use names from NotificationSettings class.
|
|||
|
|
*/
|
|||
|
|
}
|
|||
|
|
}
|