mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 20:36:48 +01:00
11 lines
237 B
Dart
11 lines
237 B
Dart
class ImageViewerPageData {
|
|
final String heroTag;
|
|
final String imageUrl;
|
|
final String thumbnailUrl;
|
|
|
|
ImageViewerPageData({
|
|
required this.heroTag,
|
|
required this.imageUrl,
|
|
required this.thumbnailUrl,
|
|
});
|
|
}
|