Files
paperless-mobile/lib/features/notifications/models/notification_channels.dart
2023-10-19 18:26:02 +02:00

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);
}