Package-level declarations

Types

Link copied to clipboard
data class Track(val id: Int, val name: String, val description: String?, val createdAt: Long, val waypoints: List<Waypoint>?)

Domain model representing a track (a collection of waypoints forming a path).

Link copied to clipboard
data class Waypoint(val id: Double, val lat: Double, val lng: Double, val elv: Double?, val time: String?, var trackId: Int)

Domain model representing a single waypoint (GPS point) in a track.