app/app/src/main/java/com/danilafe/fencelessgrazing/model/CollarPos.kt

15 lines
386 B
Kotlin
Raw Normal View History

2020-05-13 13:36:32 -07:00
package com.danilafe.fencelessgrazing.model
import android.os.Parcelable
import kotlinx.android.parcel.Parcelize
2020-05-13 13:36:32 -07:00
/**
* GPS coordinate returned by many of the project's API endpoints.
*
* @param longitude the longitude of the GPS point.
* @param latitude the latitude of the GPS point.
*/
@Parcelize
data class CollarPos(val longitude: String, val latitude: String) : Parcelable