Initial commit - Event Planner application
This commit is contained in:
5
src/core/services/notification-provider.interface.ts
Normal file
5
src/core/services/notification-provider.interface.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export interface NotificationProvider {
|
||||
send(options: { to: string; subject: string; body: string; metadata?: any }): Promise<void>;
|
||||
}
|
||||
|
||||
export type NotificationChannel = 'email' | 'whatsapp' | 'sms' | 'custom';
|
||||
Reference in New Issue
Block a user