app
Toggle table of contents
androidJvm
Platform filter
androidJvm
Switch theme
Search in API
app
app
/
org.scottishtecharmy.soundscape.database.local.model
Package-level
declarations
Types
Types
Marker
Entity
Link copied to clipboard
class
MarkerEntity
(
val
markerId
:
Long
=
0
,
val
name
:
String
,
val
longitude
:
Double
,
val
latitude
:
Double
,
val
fullAddress
:
String
=
""
)
Route
Entity
Link copied to clipboard
class
RouteEntity
(
val
routeId
:
Long
=
0
,
var
name
:
String
,
val
description
:
String
)
Route
Marker
Cross
Ref
Link copied to clipboard
data
class
RouteMarkerCrossRef
(
val
routeId
:
Long
,
val
markerId
:
Long
,
val
markerOrder
:
Int
?
=
null
)
Route
With
Markers
Link copied to clipboard
data
class
RouteWithMarkers
(
val
route
:
RouteEntity
,
var
markers
:
List
<
MarkerEntity
>
)