export enum NotificationActions {
  FETCH_NOTIFICATIONS = 'notifications/fetch',
  FETCH_UNREAD_COUNT = 'notifications/fetchUnreadCount',
  MARK_AS_READ = 'notifications/markAsRead',
  MARK_ALL_AS_READ = 'notifications/markAllAsRead',
  FETCH_PREFERENCES = 'notifications/fetchPreferences',
  UPDATE_PREFERENCES = 'notifications/updatePreferences',
}
