Package-level declarations

Types

Link copied to clipboard
class MarkerEntity(val markerId: Long = 0, val name: String, val longitude: Double, val latitude: Double, val fullAddress: String = "")
Link copied to clipboard
class RouteEntity(val routeId: Long = 0, var name: String, val description: String)
Link copied to clipboard
data class RouteMarkerCrossRef(val routeId: Long, val markerId: Long, val markerOrder: Int? = null)
Link copied to clipboard
data class RouteWithMarkers(val route: RouteEntity, var markers: List<MarkerEntity>)