mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-10 20:07:55 -06:00
17 lines
396 B
Dart
17 lines
396 B
Dart
part of 'notification_cubit.dart';
|
|
|
|
abstract class NotificationState extends Equatable {
|
|
const NotificationState();
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
}
|
|
|
|
class NotificationInitialState extends NotificationState {}
|
|
|
|
class NotificationOpenDocumentDetailsPageState extends NotificationState {
|
|
final int documentId;
|
|
|
|
const NotificationOpenDocumentDetailsPageState(this.documentId);
|
|
}
|