8 lines
237 B
Kotlin
8 lines
237 B
Kotlin
package com.danilafe.fencelessgrazing.model
|
|
|
|
/**
|
|
* A general polygon returned by many of the system's API endpoints.
|
|
*
|
|
* @param dataPoints the vertices of the polygon, in order.
|
|
*/
|
|
data class Polygon(val dataPoints : List<CollarPos>) |