import '../entities/client_notification.dart'; import '../repositories/notification_repository.dart'; class GetNotificationsUsecase { final NotificationRepository repository; GetNotificationsUsecase(this.repository); Future> call() { return repository.getNotifications(); } }