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