mirror of
https://github.com/FoggedLens/deflock-app.git
synced 2026-02-12 16:52:51 +00:00
17 lines
336 B
Dart
17 lines
336 B
Dart
import 'package:latlong2/latlong.dart';
|
|
import 'camera_profile.dart';
|
|
|
|
class PendingUpload {
|
|
final LatLng coord;
|
|
final double direction;
|
|
final CameraProfile profile;
|
|
final DateTime queuedAt;
|
|
|
|
PendingUpload({
|
|
required this.coord,
|
|
required this.direction,
|
|
required this.profile,
|
|
}) : queuedAt = DateTime.now();
|
|
}
|
|
|