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

10 lines
291 B
Kotlin

package com.danilafe.fencelessgrazing.model
/**
* 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.
*/
data class CollarPos(val longitude: String, val latitude: String)