mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-09 10:08:00 -06:00
12 lines
234 B
Dart
12 lines
234 B
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
enum NotificationResponseButtonAction {
|
|
openCreatedDocument,
|
|
acknowledgeCreatedDocument;
|
|
}
|
|
|
|
@JsonEnum()
|
|
enum NotificationResponseOpenAction {
|
|
openDownloadedDocumentPath;
|
|
}
|