23 lines
484 B
Dart
23 lines
484 B
Dart
class PointWithDescription {
|
|
final int pointId;
|
|
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,
|
|
this.dateTime,
|
|
this.description,
|
|
this.eovX,
|
|
this.eovY,
|
|
this.latitude,
|
|
this.longitude,
|
|
this.horizontalError,
|
|
this.verticalError);
|
|
}
|