blob: 2a40ff673ff267f7160370b0b73cdc01dad743a2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package org.terst.nav
/**
* Represents a Man Overboard (MOB) waypoint.
*/
data class MobWaypoint(
val latitude: Double,
val longitude: Double,
val timestamp: Long // System.currentTimeMillis()
)
|