red-ui/libs/red-domain/src/lib/notifications-preferences/notification-preferences.ts
2021-11-10 10:46:02 +02:00

10 lines
310 B
TypeScript

import { EmailNotificationScheduleType } from './types';
export interface INotificationPreferences {
emailNotificationType: EmailNotificationScheduleType;
emailNotifications: string[];
emailNotificationsEnabled: boolean;
inAppNotifications: string[];
inAppNotificationsEnabled: boolean;
}