NotificationSettingNames.cs 468 B

1234567891011121314
  1. namespace Abp.Notifications
  2. {
  3. /// <summary>
  4. /// Pre-defined setting names for notification system.
  5. /// </summary>
  6. public static class NotificationSettingNames
  7. {
  8. /// <summary>
  9. /// A top-level switch to enable/disable receiving notifications for a user.
  10. /// "Abp.Notifications.ReceiveNotifications".
  11. /// </summary>
  12. public const string ReceiveNotifications = "Abp.Notifications.ReceiveNotifications";
  13. }
  14. }