ente/mobile/lib/ui/map/image_marker.dart
2024-03-01 12:25:37 +05:30

14 lines
258 B
Dart

import 'package:photos/models/file/file.dart';
class ImageMarker {
final EnteFile imageFile;
final double latitude;
final double longitude;
ImageMarker({
required this.imageFile,
required this.latitude,
required this.longitude,
});
}