mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-10 16:07:58 -06:00
9 lines
163 B
Dart
9 lines
163 B
Dart
enum NotificationChannel {
|
|
task("task_channel", "Paperless Tasks");
|
|
|
|
final String id;
|
|
final String name;
|
|
|
|
const NotificationChannel(this.id, this.name);
|
|
}
|