mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-09 10:08:00 -06:00
11 lines
293 B
Dart
11 lines
293 B
Dart
enum NotificationChannel {
|
|
task("task_channel", "Paperless tasks"),
|
|
documentDownload("document_download_channel", "Document downloads"),
|
|
fileDownload("file_download_channel", "File downloads");
|
|
|
|
final String id;
|
|
final String name;
|
|
|
|
const NotificationChannel(this.id, this.name);
|
|
}
|