parent
9bcddd990b
commit
8da6f5eff3
@ -0,0 +1,14 @@
|
||||
package uca.baptistearthur.geocaching.model
|
||||
|
||||
import java.time.LocalDateTime
|
||||
|
||||
data class Geocache(
|
||||
val id: String,
|
||||
val name: String,
|
||||
val difficulty: Float,
|
||||
val placedDate: LocalDateTime,
|
||||
val backgroundImageUrl: String,
|
||||
val findCount: Int,
|
||||
val latitude: Double,
|
||||
val longitude: Double
|
||||
)
|
@ -1,10 +1,11 @@
|
||||
package uca.baptistearthur.geocaching
|
||||
package uca.baptistearthur.geocaching.ui.fragment
|
||||
|
||||
import android.os.Bundle
|
||||
import androidx.fragment.app.Fragment
|
||||
import android.view.LayoutInflater
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import uca.baptistearthur.geocaching.R
|
||||
|
||||
// TODO: Rename parameter arguments, choose names that match
|
||||
// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
|
@ -1,10 +1,11 @@
|
||||
package uca.baptistearthur.geocaching
|
||||
package uca.baptistearthur.geocaching.ui.fragment
|
||||
|
||||
import android.os.Bundle
|
||||
import androidx.fragment.app.Fragment
|
||||
import android.view.LayoutInflater
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import uca.baptistearthur.geocaching.R
|
||||
|
||||
// TODO: Rename parameter arguments, choose names that match
|
||||
// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
|
Loading…
Reference in new issue