MobilApp/lib/models/point_with_description_model.dart

23 lines
484 B
Dart
Raw Normal View History

2025-02-21 08:26:27 +01:00
class PointWithDescription {
final int pointId;
2025-02-21 08:26:27 +01:00
final DateTime dateTime;
final String description;
final double eovX;
final double eovY;
final double latitude;
final double longitude;
final double horizontalError;
final double verticalError;
PointWithDescription(
this.pointId,
2025-02-21 08:26:27 +01:00
this.dateTime,
this.description,
this.eovX,
this.eovY,
this.latitude,
this.longitude,
this.horizontalError,
this.verticalError);
}