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