mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
9 lines
277 B
Dart
9 lines
277 B
Dart
import 'package:freezed_annotation/freezed_annotation.dart';
|
|
import 'package:maplibre_gl/maplibre_gl.dart';
|
|
|
|
part 'map.model.freezed.dart';
|
|
|
|
@freezed
|
|
abstract class Marker with _$Marker {
|
|
const factory Marker({required LatLng location, required String assetId}) = _Marker;
|
|
}
|