Files
unionflow-mobile-apps/lib/features/notifications/presentation/bloc/notification_event.dart
dahoud d094d6db9c Initial commit: unionflow-mobile-apps
Application Flutter complète (sans build artifacts).

Signed-off-by: lions dev Team
2026-03-15 16:30:08 +00:00

19 lines
407 B
Dart

import 'package:equatable/equatable.dart';
abstract class NotificationEvent extends Equatable {
const NotificationEvent();
@override
List<Object> get props => [];
}
class LoadNotificationsRequested extends NotificationEvent {}
class NotificationMarkedAsRead extends NotificationEvent {
final String id;
const NotificationMarkedAsRead(this.id);
@override
List<Object> get props => [id];
}