aves_mio0.31/lib/widgets/common/thumbnail/notifications.dart
2026-07-18 13:39:22 +02:00

9 lines
221 B
Dart

import 'package:aves/model/entry/entry.dart';
import 'package:flutter/widgets.dart';
@immutable
class OpenViewerNotification extends Notification {
final AvesEntry entry;
const OpenViewerNotification(this.entry);
}