NotificationRepositoryInterface.ts 150 B

12345
  1. import { Notification } from './Notification'
  2. export interface NotificationRepositoryInterface {
  3. save(notification: Notification): Promise<void>
  4. }