Files
paperless-mobile/lib/features/notifications/models/notification_actions.dart

12 lines
234 B
Dart

import 'package:json_annotation/json_annotation.dart';
enum NotificationResponseButtonAction {
openCreatedDocument,
acknowledgeCreatedDocument;
}
@JsonEnum()
enum NotificationResponseOpenAction {
openDownloadedDocumentPath;
}